summaryrefslogtreecommitdiffstats
path: root/src/test/ui/union/union-backcomp.rs
blob: b19eab9f52b5294e248d25740569fe22ce1ca8fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// run-pass
// revisions: mirunsafeck thirunsafeck
// [thirunsafeck]compile-flags: -Z thir-unsafeck

#![allow(path_statements)]
#![allow(dead_code)]

macro_rules! union {
    () => (struct S;)
}

union!();

fn union() {}

fn main() {
    union();

    let union = 10;

    union;

    union as u8;

    union U {
        a: u8,
    }
}