diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/behavior/bugs/1486.zig | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/test/behavior/bugs/1486.zig b/test/behavior/bugs/1486.zig index 53309f5553..8f954a3600 100644 --- a/test/behavior/bugs/1486.zig +++ b/test/behavior/bugs/1486.zig @@ -1,13 +1,10 @@ const std = @import("std"); -const builtin = @import("builtin"); const expect = std.testing.expect; const ptr = &global; var global: usize = 123; test "constant pointer to global variable causes runtime load" { - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; - global = 1234; try expect(&global == ptr); try expect(ptr.* == 1234); |
