2016-12-01 01:35:25 +03:00
error[E0038]: the trait `issue_3907::Foo` cannot be made into an object
2020-01-18 14:57:56 -08:00
--> $DIR/issue-3907-2.rs:11:12
2016-12-01 01:35:25 +03:00
|
2018-02-23 03:42:32 +03:00
LL | fn bar(_x: Foo) {}
2020-10-19 17:57:18 -07:00
| ^^^ `issue_3907::Foo` cannot be made into an object
2020-10-15 17:23:45 -07:00
|
note: for a trait to be "object safe" it needs to allow building a vtable to allow the call to be resolvable dynamically; for more information visit <https://doc.rust-lang.org/reference/items/traits.html#object-safety>
--> $DIR/auxiliary/issue-3907.rs:2:8
2019-09-02 22:11:29 -07:00
|
2020-03-17 11:45:02 -04:00
LL | fn bar();
2020-10-15 17:23:45 -07:00
| ^^^ the trait cannot be made into an object because associated function `bar` has no `self` parameter
2016-12-01 01:35:25 +03:00
2017-07-02 13:49:30 +03:00
error: aborting due to previous error
2016-12-01 01:35:25 +03:00
2018-03-03 15:59:40 +01:00
For more information about this error, try `rustc --explain E0038`.