aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/panic_called_at_compile_time.zig
blob: 30cafcc8a9c58f8a21eb952bc6b2e272b98c7bc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
export fn entry() void {
    comptime {
        @panic(
            "aoeu",
        );
    }
}

// error
//
// :3:9: error: encountered @panic at comptime: aoeu