]> git.lizzy.rs Git - rust.git/blob - src/test/ui/malformed/malformed-derive-entry.stderr
Rollup merge of #93112 - pietroalbini:pa-cve-2022-21658-nightly, r=pietroalbini
[rust.git] / src / test / ui / malformed / malformed-derive-entry.stderr
1 error: traits in `#[derive(...)]` don't accept arguments
2   --> $DIR/malformed-derive-entry.rs:1:14
3    |
4 LL | #[derive(Copy(Bad))]
5    |              ^^^^^ help: remove the arguments
6
7 error: traits in `#[derive(...)]` don't accept values
8   --> $DIR/malformed-derive-entry.rs:6:14
9    |
10 LL | #[derive(Copy="bad")]
11    |              ^^^^^^ help: remove the value
12
13 error: malformed `derive` attribute input
14   --> $DIR/malformed-derive-entry.rs:11:1
15    |
16 LL | #[derive]
17    | ^^^^^^^^^ help: must be of the form: `#[derive(Trait1, Trait2, ...)]`
18
19 error[E0277]: the trait bound `Test1: Clone` is not satisfied
20   --> $DIR/malformed-derive-entry.rs:1:10
21    |
22 LL | #[derive(Copy(Bad))]
23    |          ^^^^ the trait `Clone` is not implemented for `Test1`
24    |
25 note: required by a bound in `Copy`
26   --> $SRC_DIR/core/src/marker.rs:LL:COL
27    |
28 LL | pub trait Copy: Clone {
29    |                 ^^^^^ required by this bound in `Copy`
30    = note: this error originates in the derive macro `Copy` (in Nightly builds, run with -Z macro-backtrace for more info)
31
32 error[E0277]: the trait bound `Test2: Clone` is not satisfied
33   --> $DIR/malformed-derive-entry.rs:6:10
34    |
35 LL | #[derive(Copy="bad")]
36    |          ^^^^ the trait `Clone` is not implemented for `Test2`
37    |
38 note: required by a bound in `Copy`
39   --> $SRC_DIR/core/src/marker.rs:LL:COL
40    |
41 LL | pub trait Copy: Clone {
42    |                 ^^^^^ required by this bound in `Copy`
43    = note: this error originates in the derive macro `Copy` (in Nightly builds, run with -Z macro-backtrace for more info)
44
45 error: aborting due to 5 previous errors
46
47 For more information about this error, try `rustc --explain E0277`.