]> git.proxmox.com Git - rustc.git/blame - src/test/ui/traits/wf-trait-object-only-maybe-bound.stderr
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / ui / traits / wf-trait-object-only-maybe-bound.stderr
CommitLineData
dc9dc135
XL
1error: `?Trait` is not permitted in trait object types
2 --> $DIR/wf-trait-object-only-maybe-bound.rs:3:15
3 |
4LL | type _0 = dyn ?Sized;
5 | ^^^^^^
6
7error[E0224]: at least one trait is required for an object type
8 --> $DIR/wf-trait-object-only-maybe-bound.rs:3:11
9 |
10LL | type _0 = dyn ?Sized;
11 | ^^^^^^^^^^
12
13error: aborting due to 2 previous errors
14
ba9703b0 15For more information about this error, try `rustc --explain E0224`.