summaryrefslogtreecommitdiffstats
path: root/tests/ui/error-codes/E0206.rs
blob: 0f3d427ce11ac4fa430886ddd1333e1dada11ea3 (plain)
1
2
3
4
5
6
7
8
#[derive(Copy, Clone)]
struct Bar;

impl Copy for &'static mut Bar { }
//~^ ERROR the trait `Copy` may not be implemented for this type

fn main() {
}