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