mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
16 lines
458 B
Rust
16 lines
458 B
Rust
#![feature(offset_of_nested)]
|
|
|
|
use std::mem::offset_of;
|
|
|
|
enum Alpha {
|
|
One(u8),
|
|
Two(u8),
|
|
}
|
|
|
|
fn main() {
|
|
offset_of!(Alpha::One, 0); //~ ERROR expected type, found variant `Alpha::One`
|
|
offset_of!(Alpha, One); //~ ERROR `One` is an enum variant; expected field at end of `offset_of`
|
|
//~| ERROR using enums in offset_of is experimental
|
|
offset_of!(Alpha, Two.0); //~ ERROR using enums in offset_of is experimental
|
|
}
|