summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0565.rs
blob: b09f5df5201b1b39aebb3fbfd78046a42aa41fa3 (plain)
1
2
3
4
5
// repr currently doesn't support literals
#[repr("C")] //~ ERROR E0565
struct A {  }

fn main() {  }