]> git.lizzy.rs Git - rust.git/blob - src/test/ui/object-safety/object-safety-mentions-Self.curr.stderr
Auto merge of #86155 - alexcrichton:abort-on-unwind, r=nikomatsakis
[rust.git] / src / test / ui / object-safety / object-safety-mentions-Self.curr.stderr
1 error[E0038]: the trait `Bar` cannot be made into an object
2   --> $DIR/object-safety-mentions-Self.rs:22:30
3    |
4 LL | fn make_bar<T:Bar>(t: &T) -> &dyn Bar {
5    |                              ^^^^^^^^ `Bar` cannot be made into an object
6    |
7    = help: consider moving `bar` to another trait
8 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>
9   --> $DIR/object-safety-mentions-Self.rs:11:22
10    |
11 LL | trait Bar {
12    |       --- this trait cannot be made into an object...
13 LL |     fn bar(&self, x: &Self);
14    |                      ^^^^^ ...because method `bar` references the `Self` type in this parameter
15
16 error[E0038]: the trait `Baz` cannot be made into an object
17   --> $DIR/object-safety-mentions-Self.rs:28:30
18    |
19 LL | fn make_baz<T:Baz>(t: &T) -> &dyn Baz {
20    |                              ^^^^^^^^ `Baz` cannot be made into an object
21    |
22    = help: consider moving `baz` to another trait
23 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>
24   --> $DIR/object-safety-mentions-Self.rs:15:22
25    |
26 LL | trait Baz {
27    |       --- this trait cannot be made into an object...
28 LL |     fn baz(&self) -> Self;
29    |                      ^^^^ ...because method `baz` references the `Self` type in its return type
30
31 error: aborting due to 2 previous errors
32
33 For more information about this error, try `rustc --explain E0038`.