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

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

7 lines
71 B
Rust
Raw Normal View History

2018-03-17 21:08:32 -05:00
#[repr(u128)]
enum Foo { //~ ERROR E0658
Bar(u64),
}
2018-03-17 21:08:32 -05:00
fn main() {}