zig/test/behavior/bugs/3112.zig

18 lines
346 B
Zig
Raw Normal View History

const std = @import("std");
const expect = std.testing.expect;
const State = struct {
const Self = @This();
enter: fn (previous: ?Self) void,
};
fn prev(p: ?State) void {
expect(p == null) catch @panic("test failure");
}
test "zig test crash" {
var global: State = undefined;
global.enter = prev;
global.enter(null);
}