]> git.lizzy.rs Git - rust.git/blob - src/test/ui/wf/wf-unsafe-trait-obj-match.stderr
Rollup merge of #87185 - waterlens:issue-86499-fix, r=Mark-Simulacrum
[rust.git] / src / test / ui / wf / wf-unsafe-trait-obj-match.stderr
1 error[E0308]: `match` arms have incompatible types
2   --> $DIR/wf-unsafe-trait-obj-match.rs:23:17
3    |
4 LL | /     match opt() {
5 LL | |         Some(()) => &S,
6    | |                     -- this is found to be of type `&S`
7 LL | |         None => &R,
8    | |                 ^^ expected struct `S`, found struct `R`
9 LL | |     }
10    | |_____- `match` arms have incompatible types
11    |
12    = note:   expected type `&S`
13            found reference `&R`
14
15 error[E0038]: the trait `Trait` cannot be made into an object
16   --> $DIR/wf-unsafe-trait-obj-match.rs:26:21
17    |
18 LL |         Some(()) => &S,
19    |                     ^^ `Trait` cannot be made into an object
20    |
21 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>
22   --> $DIR/wf-unsafe-trait-obj-match.rs:6:14
23    |
24 LL | trait Trait: Sized {}
25    |       -----  ^^^^^ ...because it requires `Self: Sized`
26    |       |
27    |       this trait cannot be made into an object...
28    = note: required because of the requirements on the impl of `CoerceUnsized<&dyn Trait>` for `&S`
29    = note: required by cast to type `&dyn Trait`
30
31 error[E0038]: the trait `Trait` cannot be made into an object
32   --> $DIR/wf-unsafe-trait-obj-match.rs:25:25
33    |
34 LL |     let t: &dyn Trait = match opt() {
35    |                         ^^^^^^^^^^^ `Trait` cannot be made into an object
36    |
37 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>
38   --> $DIR/wf-unsafe-trait-obj-match.rs:6:14
39    |
40 LL | trait Trait: Sized {}
41    |       -----  ^^^^^ ...because it requires `Self: Sized`
42    |       |
43    |       this trait cannot be made into an object...
44    = note: required because of the requirements on the impl of `CoerceUnsized<&dyn Trait>` for `&R`
45    = note: required by cast to type `&dyn Trait`
46
47 error: aborting due to 3 previous errors
48
49 Some errors have detailed explanations: E0038, E0308.
50 For more information about an error, try `rustc --explain E0038`.