rust/tests/ui/proc-macro/derive-union.rs

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

18 lines
212 B
Rust
Raw Normal View History

// run-pass
#![allow(unused_variables)]
// aux-build:derive-union.rs
#[macro_use]
extern crate derive_union;
#[repr(C)]
#[derive(UnionTest)]
union Test {
a: u8,
}
fn main() {
let t = Test { a: 0 };
}