blob: c6706d41764d96258fc533c5841b780867042b75 (
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
|
const std = @import("std");
pub fn panic(message: []const u8, stack_trace: ?*std.builtin.StackTrace, _: ?usize) noreturn {
_ = stack_trace;
if (std.mem.eql(u8, message, "access of union field 'float' while field 'int' is active")) {
std.process.exit(0);
}
std.process.exit(1);
}
const Foo = union {
float: f32,
int: u32,
};
pub fn main() !void {
var f = Foo{ .int = 42 };
bar(&f);
return error.TestFailed;
}
fn bar(f: *Foo) void {
f.float = 12.34;
}
// run
// backend=llvm
// target=native
|