]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-19380.stderr
Rollup merge of #100168 - WaffleLapkin:improve_diagnostics_for_missing_type_in_a_cons...
[rust.git] / src / test / ui / issues / issue-19380.stderr
1 error[E0038]: the trait `Qiz` cannot be made into an object
2   --> $DIR/issue-19380.rs:11:29
3    |
4 LL |   foos: &'static [&'static (dyn Qiz + 'static)]
5    |                             ^^^^^^^^^^^^^^^^^ `Qiz` cannot be made into an object
6    |
7 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>
8   --> $DIR/issue-19380.rs:2:6
9    |
10 LL | trait Qiz {
11    |       --- this trait cannot be made into an object...
12 LL |   fn qiz();
13    |      ^^^ ...because associated function `qiz` has no `self` parameter
14 help: consider turning `qiz` into a method by giving it a `&self` argument
15    |
16 LL |   fn qiz(&self);
17    |          +++++
18 help: alternatively, consider constraining `qiz` so it does not apply to trait objects
19    |
20 LL |   fn qiz() where Self: Sized;
21    |            +++++++++++++++++
22
23 error: aborting due to previous error
24
25 For more information about this error, try `rustc --explain E0038`.