summary refs log tree commit diff
path: root/src/test/ui/object-safety/object-safety-mentions-Self.stderr
blob: b181be95a54011cf913c24647f0457ae52096612 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
error[E0038]: the trait `Bar` cannot be made into an object
  --> $DIR/object-safety-mentions-Self.rs:27:1
   |
LL | fn make_bar<T:Bar>(t: &T) -> &Bar {
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Bar` cannot be made into an object
   |
   = note: method `bar` references the `Self` type in its arguments or return type

error[E0038]: the trait `Baz` cannot be made into an object
  --> $DIR/object-safety-mentions-Self.rs:32:1
   |
LL | fn make_baz<T:Baz>(t: &T) -> &Baz {
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Baz` cannot be made into an object
   |
   = note: method `bar` references the `Self` type in its arguments or return type

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0038`.