blob: 2f605d8e904c5dfbfbd737a8a949376c738d478c [file] [log] [blame]
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`.