summary refs log tree commit diff
path: root/src/test/ui/issues/issue-33571.rs
blob: 223bbc3ff5e2190f35519ca5b3ee1665fe1f9fbc (plain)
1
2
3
4
5
6
#[derive(Clone,
         Sync, //~ ERROR this unsafe trait should be implemented explicitly
         Copy)]
enum Foo {}

fn main() {}