mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
10 lines
154 B
Rust
10 lines
154 B
Rust
// run-pass
|
|
#[repr(C)]
|
|
pub enum CPOption<T> {
|
|
PSome(T),
|
|
}
|
|
|
|
fn main() {
|
|
println!("sizeof CPOption<i32> {}", std::mem::size_of::<CPOption<i32>>());
|
|
}
|