]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0565.rs
Rollup merge of #82259 - osa1:issue82156, r=petrochenkov
[rust.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() {  }