2018-10-24 08:10:17 -05:00
|
|
|
error: the `foo` method cannot be invoked on a trait object
|
2018-10-24 09:27:17 -05:00
|
|
|
--> $DIR/by-value-trait-object-safety.rs:18:7
|
2018-10-24 08:10:17 -05:00
|
|
|
|
|
2020-01-30 22:12:46 -06:00
|
|
|
LL | fn foo(self) -> String where Self: Sized;
|
|
|
|
| ----- this has a `Sized` requirement
|
|
|
|
...
|
2018-10-24 08:10:17 -05:00
|
|
|
LL | x.foo();
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|