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

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

9 lines
97 B
Rust
Raw Normal View History

2016-05-20 13:18:30 +00:00
#![feature(repr_simd)]
#[repr(simd)]
struct Bad(u16, u32, u32);
//~^ ERROR E0076
2016-05-20 13:18:30 +00:00
fn main() {
}