rust/tests/ui/repr/transparent-enum-too-many-variants.rs

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

11 lines
150 B
Rust
Raw Normal View History

use std::mem::size_of;
#[repr(transparent)]
enum Foo { //~ ERROR E0731
A(u8), B(u8),
}
fn main() {
println!("Foo: {}", size_of::<Foo>());
}