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