rust/src/test/ui/malformed/malformed-derive-entry.stderr

21 lines
591 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error: expected one of `)`, `,`, or `::`, found `(`
2018-12-25 09:56:47 -06:00
--> $DIR/malformed-derive-entry.rs:1:14
2018-08-08 07:28:26 -05:00
|
LL | #[derive(Copy(Bad))]
| ^ expected one of `)`, `,`, or `::`
2018-08-08 07:28:26 -05:00
error: expected one of `)`, `,`, or `::`, found `=`
--> $DIR/malformed-derive-entry.rs:4:14
2018-08-08 07:28:26 -05:00
|
LL | #[derive(Copy="bad")]
| ^ expected one of `)`, `,`, or `::`
2018-08-08 07:28:26 -05:00
error: malformed `derive` attribute input
--> $DIR/malformed-derive-entry.rs:7:1
2018-08-08 07:28:26 -05:00
|
LL | #[derive]
| ^^^^^^^^^ help: missing traits to be derived: `#[derive(Trait1, Trait2, ...)]`
2018-08-08 07:28:26 -05:00
error: aborting due to 3 previous errors
2018-08-08 07:28:26 -05:00