summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0777.rs
blob: ff70f7368666586e2279e4a9ddf10a8af66292c8 (plain)
1
2
3
4
5
6
7
#[derive("Clone")] //~ ERROR E0777
#[derive("Clone
")]
//~^^ ERROR E0777
struct Foo;

fn main() {}