summary refs log tree commit diff
path: root/src/test/ui/object-safety/object-safety-sized.curr.stderr
blob: 54f65c43d9cdef0f9e346b5d8ba4e58ca43a8005 (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.rs:12:30
   |
LL | trait Bar : Sized {
   |       ---   ----- ...because it requires `Self: Sized`
   |       |
   |       this trait cannot be made into an object...
...
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`.