mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-07 08:53:00 +00:00
14 lines
260 B
Rust
14 lines
260 B
Rust
#![feature(offset_of)]
|
|
|
|
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, Two.0); //~ ERROR no field `Two` on type `Alpha`
|
|
}
|