]> git.proxmox.com Git - rustc.git/blame - tests/ui/error-codes/E0206.rs
New upstream version 1.70.0+dfsg1
[rustc.git] / tests / ui / error-codes / E0206.rs
CommitLineData
5bcae85e
SL
1#[derive(Copy, Clone)]
2struct Bar;
3
83c7162d 4impl Copy for &'static mut Bar { }
353b0b11 5//~^ ERROR the trait `Copy` cannot be implemented for this type
5bcae85e
SL
6
7fn main() {
8}