aboutsummaryrefslogtreecommitdiff
path: root/test/cases/safety/@enumFromInt truncated bits - exhaustive.zig
blob: 4edbfae996280f074e9600f65e5c5aae5b646882 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
const std = @import("std");

pub fn panic(message: []const u8, _: ?*std.builtin.StackTrace, _: ?usize) noreturn {
    if (std.mem.eql(u8, message, "invalid enum value")) {
        std.process.exit(0);
    }
    std.process.exit(1);
}

pub fn main() u8 {
    var num: i5 = undefined;
    num = 14;

    const E = enum(u3) { a, b, c, d, e, f, g, h };
    const invalid: E = @enumFromInt(num);
    _ = invalid;

    return 1;
}

// run
// backend=selfhosted,llvm
// target=x86_64-linux