2018-07-15 16:11:54 -05:00
error[E0038]: the trait `Qiz` cannot be made into an object
2021-07-20 10:56:33 -05:00
--> $DIR/issue-19380.rs:11:29
2018-07-15 16:11:54 -05:00
|
2020-10-15 19:23:45 -05:00
LL | foos: &'static [&'static (dyn Qiz + 'static)]
2021-07-20 10:56:33 -05:00
| ^^^^^^^^^^^^^^^^^ `Qiz` 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/issue-19380.rs:2:6
|
2020-01-31 18:47:00 -06:00
LL | trait Qiz {
| --- this trait cannot be made into an object...
2019-09-02 22:22:22 -05:00
LL | fn qiz();
2020-10-15 19:23:45 -05:00
| ^^^ ...because associated function `qiz` has no `self` parameter
help: consider turning `qiz` into a method by giving it a `&self` argument
2020-01-31 18:47:00 -06:00
|
2020-10-15 19:23:45 -05:00
LL | fn qiz(&self);
2021-06-21 21:07:19 -05:00
| +++++
2020-10-15 19:23:45 -05:00
help: alternatively, consider constraining `qiz` so it does not apply to trait objects
2020-01-31 20:48:35 -06:00
|
LL | fn qiz() where Self: Sized;
2021-06-21 21:07:19 -05:00
| +++++++++++++++++
2018-07-15 16:11:54 -05:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0038`.