blob: 74d22102c664df426763d75cdc0cbe2e07e0e7e6 [file] [log] [blame]
#[derive(Copy(Bad))]
//~^ ERROR expected one of `)`, `,`, or `::`, found `(`
struct Test1;
#[derive(Copy="bad")]
//~^ ERROR expected one of `)`, `,`, or `::`, found `=`
struct Test2;
#[derive()]
//~^ WARNING empty trait list
struct Test3;
#[derive]
//~^ ERROR attribute must be of the form
struct Test4;
fn main() {}