rust/src/test/ui/issues/issue-33571.rs
Vadim Petrochenkov 642669c74d Update tests
2020-01-09 21:23:12 +03:00

7 lines
201 B
Rust

#[derive(Clone,
Sync, //~ ERROR cannot find derive macro `Sync` in this scope
//~| ERROR cannot find derive macro `Sync` in this scope
Copy)]
enum Foo {}
fn main() {}