]> git.proxmox.com Git - rustc.git/blob - src/test/ui/error-codes/E0565.rs
New upstream version 1.42.0+dfsg1
[rustc.git] / src / test / ui / error-codes / E0565.rs
1 // repr currently doesn't support literals
2 #[repr("C")] //~ ERROR E0565
3 //~| ERROR E0565
4 struct A { }
5
6 fn main() { }