diff options
| author | Jakub Konka <kubkon@jakubkonka.com> | 2022-08-30 14:29:41 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-30 14:29:41 +0200 |
| commit | 7ef0c9d298d5645b4b6d1ffdfd34c69c04423ed2 (patch) | |
| tree | 12b54077e1533b1abcb8d9a9cd1222b24478f5fc /test | |
| parent | b64e4c5bf28286091ff97245e61f08b897e3eb5e (diff) | |
| parent | e57fbe8069e672483b0c9ae1fa28c00812596306 (diff) | |
| download | zig-7ef0c9d298d5645b4b6d1ffdfd34c69c04423ed2.tar.gz zig-7ef0c9d298d5645b4b6d1ffdfd34c69c04423ed2.zip | |
Merge pull request #12677 from ziglang/coff-linker
coff: initial rewrite of the COFF/PE linker
Diffstat (limited to 'test')
| -rw-r--r-- | test/cases/aarch64-macos/hello_world_with_updates.0.zig | 2 | ||||
| -rw-r--r-- | test/cases/x86_64-linux/hello_world_with_updates.0.zig | 2 | ||||
| -rw-r--r-- | test/cases/x86_64-macos/hello_world_with_updates.0.zig | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/test/cases/aarch64-macos/hello_world_with_updates.0.zig b/test/cases/aarch64-macos/hello_world_with_updates.0.zig index 0de742bdec..dc65cd8279 100644 --- a/test/cases/aarch64-macos/hello_world_with_updates.0.zig +++ b/test/cases/aarch64-macos/hello_world_with_updates.0.zig @@ -2,5 +2,5 @@ // output_mode=Exe // target=aarch64-macos // -// :107:9: error: struct 'tmp.tmp' has no member named 'main' +// :105:9: error: struct 'tmp.tmp' has no member named 'main' // :7:1: note: struct declared here diff --git a/test/cases/x86_64-linux/hello_world_with_updates.0.zig b/test/cases/x86_64-linux/hello_world_with_updates.0.zig index 4816ec1b26..795f4f2991 100644 --- a/test/cases/x86_64-linux/hello_world_with_updates.0.zig +++ b/test/cases/x86_64-linux/hello_world_with_updates.0.zig @@ -2,5 +2,5 @@ // output_mode=Exe // target=x86_64-linux // -// :107:9: error: struct 'tmp.tmp' has no member named 'main' +// :105:9: error: struct 'tmp.tmp' has no member named 'main' // :7:1: note: struct declared here diff --git a/test/cases/x86_64-macos/hello_world_with_updates.0.zig b/test/cases/x86_64-macos/hello_world_with_updates.0.zig index 998b2f13eb..9839371e31 100644 --- a/test/cases/x86_64-macos/hello_world_with_updates.0.zig +++ b/test/cases/x86_64-macos/hello_world_with_updates.0.zig @@ -2,5 +2,5 @@ // output_mode=Exe // target=x86_64-macos // -// :107:9: error: struct 'tmp.tmp' has no member named 'main' +// :105:9: error: struct 'tmp.tmp' has no member named 'main' // :7:1: note: struct declared here |
