2016-11-30 16:35:25 -06:00
error[E0038]: the trait `issue_3907::Foo` cannot be made into an object
2020-01-18 16:57:56 -06:00
--> $DIR/issue-3907-2.rs:11:12
2016-11-30 16:35:25 -06:00
|
2018-02-22 18:42:32 -06:00
LL | fn bar(_x: Foo) {}
2020-10-19 19:57:18 -05:00
| ^^^ `issue_3907::Foo` cannot be made into an object
2020-10-15 19:23:45 -05: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-03 00:11:29 -05:00
|
2020-03-17 10:45:02 -05:00
LL | fn bar();
2020-10-15 19:23:45 -05:00
| ^^^ the trait cannot be made into an object because associated function `bar` has no `self` parameter
2016-11-30 16:35:25 -06:00
2017-07-02 05:49:30 -05:00
error: aborting due to previous error
2016-11-30 16:35:25 -06:00
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0038`.