mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
20 lines
394 B
Plaintext
20 lines
394 B
Plaintext
#target=x86_64-linux-selfhosted
|
|
#target=x86_64-linux-cbe
|
|
#target=x86_64-windows-cbe
|
|
#target=wasm32-wasi-selfhosted
|
|
#update=initial version
|
|
#file=main.zig
|
|
const std = @import("std");
|
|
pub fn main() !void {}
|
|
#expect_stdout=""
|
|
|
|
#update=introduce parse error
|
|
#file=main.zig
|
|
pub fn main() !void {
|
|
#expect_error=ignored
|
|
|
|
#update=fix parse error
|
|
#file=main.zig
|
|
pub fn main() !void {}
|
|
#expect_stdout=""
|