disable failing incremental compilation test case

see #12288

now `zig build test-cases -Denable-llvm` passes locally for me.
This commit is contained in:
Andrew Kelley 2022-07-28 21:40:05 -07:00
parent daac39364a
commit 1b1c70ce38
2 changed files with 0 additions and 22 deletions

View File

@ -1,12 +0,0 @@
pub fn main() void {
var i: u32 = 16;
assert(i >> 1, 8);
}
fn assert(a: u32, b: u32) void {
if (a != b) unreachable;
}
// run
// backend=llvm
// target=x86_64-linux,x86_64-macos
//

View File

@ -1,10 +0,0 @@
pub fn main() void {
var i: u32 = 16;
assert(i << 1, 32);
}
fn assert(a: u32, b: u32) void {
if (a != b) unreachable;
}
// run
//