rust/tests/ui/issues/issue-33202.rs

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

10 lines
155 B
Rust
Raw Normal View History

//@ run-pass
#[repr(C)]
pub enum CPOption<T> {
PSome(T),
}
fn main() {
println!("sizeof CPOption<i32> {}", std::mem::size_of::<CPOption<i32>>());
}