]> git.lizzy.rs Git - rust.git/blob - tests/ui/traits/object/macro-matcher.stderr
Auto merge of #105716 - chriswailes:ndk-update-redux, r=pietroalbini
[rust.git] / tests / ui / traits / object / macro-matcher.stderr
1 error[E0224]: at least one trait is required for an object type
2   --> $DIR/macro-matcher.rs:11:8
3    |
4 LL |     m!(dyn 'static +);
5    |        ^^^^^^^^^^^^^
6
7 error[E0038]: the trait `Copy` cannot be made into an object
8   --> $DIR/macro-matcher.rs:8:8
9    |
10 LL |     m!(dyn Copy + Send + 'static);
11    |        ^^^^^^^^^^^^^^^^^^^^^^^^^ `Copy` cannot be made into an object
12    |
13    = note: the trait cannot be made into an object because it requires `Self: Sized`
14    = 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>
15
16 error: aborting due to 2 previous errors
17
18 Some errors have detailed explanations: E0038, E0224.
19 For more information about an error, try `rustc --explain E0038`.