master
 1const std = @import("std");
 2
 3const U = union(enum) {
 4    foo: u8,
 5    bar: f64,
 6};
 7
 8pub fn main() !void {
 9    const t = U.foo;
10    _ = t;
11}
12
13// run
14// backend=selfhosted,llvm
15//