aboutsummaryrefslogtreecommitdiff
path: root/test/cases/safety/slice by length sentinel mismatch on rhs.zig
blob: d3cff477289c9551f50d3a5577c5437f054b5c0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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, "sentinel mismatch: expected 1, found 0")) {
        std.process.exit(0);
    }
    std.process.exit(1);
}
pub fn main() !void {
    var buf: [4:0]u8 = .{ 1, 2, 3, 4 };
    const slice = buf[0.. :1][0..2];
    _ = slice;
    return error.TestFailed;
}
// run
// backend=llvm
// target=native