]> git.lizzy.rs Git - rust.git/blob - src/test/ui/object-safety/object-safety-supertrait-mentions-Self.stderr
8ae89832703d1d9e3f6c6e509403fe93b7770503
[rust.git] / src / test / ui / object-safety / object-safety-supertrait-mentions-Self.stderr
1 error[E0038]: the trait `Baz` cannot be made into an object
2   --> $DIR/object-safety-supertrait-mentions-Self.rs:15:31
3    |
4 LL | fn make_baz<T:Baz>(t: &T) -> &dyn Baz {
5    |                               ^^^^^^^ the trait `Baz` cannot be made into an object
6    |
7    = note: the trait cannot use `Self` as a type parameter in the supertraits or where-clauses
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0038`.