summary refs log tree commit diff
path: root/src/test/ui/object-safety/object-safety-sized-2.curr.stderr
blob: 2f605d8e904c5dfbfbd737a8a949376c738d478c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0038]: the trait `Bar` cannot be made into an object
  --> $DIR/object-safety-sized-2.rs:14:30
   |
LL | trait Bar
   |       --- this trait cannot be made into an object...
LL |     where Self : Sized
   |                  ----- ...because it requires `Self: Sized`
...
LL | fn make_bar<T:Bar>(t: &T) -> &dyn Bar {
   |                              ^^^^^^^^ the trait `Bar` cannot be made into an object

error: aborting due to previous error

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