rust/tests/ui/error-codes/E0565.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
98 B
Rust
Raw Normal View History

// repr currently doesn't support literals
#[repr("C")] //~ ERROR E0565
struct A {}
fn main() {}