]> git.proxmox.com Git - rustc.git/blame - src/test/ui/traits/trait-object-macro-matcher.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / traits / trait-object-macro-matcher.stderr
CommitLineData
dc9dc135
XL
1error[E0224]: at least one trait is required for an object type
2 --> $DIR/trait-object-macro-matcher.rs:11:8
b7449926 3 |
dc9dc135
XL
4LL | m!(dyn 'static +);
5 | ^^^^^^^^^^^^^
b7449926 6
1b1a35ee 7error[E0038]: the trait `Copy` cannot be made into an object
0731742a 8 --> $DIR/trait-object-macro-matcher.rs:8:8
b7449926 9 |
dc9dc135 10LL | m!(dyn Copy + Send + 'static);
1b1a35ee 11 | ^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Copy` cannot be made into an object
b7449926 12 |
74b04a01 13 = note: the trait cannot be made into an object because it requires `Self: Sized`
b7449926
XL
14
15error: aborting due to 2 previous errors
16
ba9703b0
XL
17Some errors have detailed explanations: E0038, E0224.
18For more information about an error, try `rustc --explain E0038`.