]> git.proxmox.com Git - rustc.git/blame - src/test/ui/object-safety/object-safety-mentions-Self.curr.stderr
New upstream version 1.49.0+dfsg1
[rustc.git] / src / test / ui / object-safety / object-safety-mentions-Self.curr.stderr
CommitLineData
ff7c6d11 1error[E0038]: the trait `Bar` cannot be made into an object
72b1a166 2 --> $DIR/object-safety-mentions-Self.rs:22:30
ff7c6d11 3 |
dc9dc135 4LL | fn make_bar<T:Bar>(t: &T) -> &dyn Bar {
72b1a166
FG
5 | ^^^^^^^^ `Bar` cannot be made into an object
6 |
7 = help: consider moving `bar` to another trait
8note: 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 |
11LL | trait Bar {
12 | --- this trait cannot be made into an object...
13LL | fn bar(&self, x: &Self);
14 | ^^^^^ ...because method `bar` references the `Self` type in this parameter
ff7c6d11
XL
15
16error[E0038]: the trait `Baz` cannot be made into an object
72b1a166 17 --> $DIR/object-safety-mentions-Self.rs:28:30
ff7c6d11 18 |
dc9dc135 19LL | fn make_baz<T:Baz>(t: &T) -> &dyn Baz {
72b1a166
FG
20 | ^^^^^^^^ `Baz` cannot be made into an object
21 |
22 = help: consider moving `baz` to another trait
23note: 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 |
26LL | trait Baz {
27 | --- this trait cannot be made into an object...
28LL | fn baz(&self) -> Self;
29 | ^^^^ ...because method `baz` references the `Self` type in its return type
ff7c6d11
XL
30
31error: aborting due to 2 previous errors
32
0531ce1d 33For more information about this error, try `rustc --explain E0038`.