clean up a compile error test case

These should be build-obj, not build-exe, where possible.
This commit is contained in:
Andrew Kelley 2022-05-24 01:20:18 -07:00
parent 818fbd9c56
commit 953e2778d4

View File

@ -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
//