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

fn main() {}