Commit 953e2778d4

Andrew Kelley <andrew@ziglang.org>
2022-05-24 10:20:18
clean up a compile error test case
These should be build-obj, not build-exe, where possible.
1 parent 818fbd9
Changed files (1)
test/cases/llvm/pointer_with_different_address_spaces.zig
@@ -1,12 +1,12 @@
 fn entry(a: *addrspace(.gs) i32) *addrspace(.fs) i32 {
     return a;
 }
-pub fn main() void {
+export fn entry2() void {
     _ = entry;
 }
 
 // error
-// output_mode=Exe
+// output_mode=Obj
 // backend=stage2,llvm
 // target=x86_64-linux,x86_64-macos
 //