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

fn main() {  }