rustc/tests/ui/union/union-inherent-method.rs
2024-06-19 10:24:51 +02:00

15 lines
169 B
Rust

// run-pass
union U {
a: u8,
}
impl U {
fn method(&self) -> u8 { unsafe { self.a } }
}
fn main() {
let u = U { a: 10 };
assert_eq!(u.method(), 10);
}