Files
zig/test/incremental/remove_invalid_union_backing_enum
T
Matthew Lugg 4a494a8cf9 tests: enable incremental tests for x86_64-linux-llvm
These all pass now! I have also removed the warning about the LLVM
backend not supporting incremental compilation; I expect it will work
sort of okay in practice by now.
2026-03-28 16:50:43 +00:00

35 lines
709 B
Plaintext

#target=x86_64-linux-selfhosted
#target=x86_64-windows-selfhosted
#target=x86_64-linux-cbe
#target=x86_64-windows-cbe
#target=x86_64-linux-llvm
#target=wasm32-wasi-selfhosted
#update=initial version
#file=main.zig
const E = enum { a, b, c };
const U = union(E) {
a: i32,
b: f64,
c: f64,
d: f64,
};
pub fn main() void {
const u: U = .{ .a = 123 };
_ = u;
}
#expect_error=main.zig:6:5: error: no field named 'd' in enum 'main.E'
#expect_error=main.zig:1:11: note: enum declared here
#update=remove invalid backing enum
#file=main.zig
const U = union {
a: i32,
b: f64,
c: f64,
d: f64,
};
pub fn main() void {
const u: U = .{ .a = 123 };
_ = u;
}
#expect_stdout=""