aboutsummaryrefslogtreecommitdiff
path: root/test/cases/safety/out of bounds slice access.zig
blob: b4c87948a5ce44be34576b64fc0156ac1b3012b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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, "index out of bounds: index 4, len 4")) {
        std.process.exit(0);
    }
    std.process.exit(1);
}
pub fn main() !void {
    const a = [_]i32{ 1, 2, 3, 4 };
    baz(bar(&a));
    return error.TestFailed;
}
fn bar(a: []const i32) i32 {
    return a[4];
}
fn baz(_: i32) void {}
// run
// backend=llvm
// target=native