diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2022-07-13 15:59:46 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2022-07-13 16:10:41 -0700 |
| commit | fad95741db7529bbad873fb330c25d64ac765340 (patch) | |
| tree | 22ca663d66d22bccc6ffe9ac0d2c676ed8bb0636 /lib/std/net | |
| parent | 1fee9eac8bb5d2e3e78c098b9cebe2cda332e7cf (diff) | |
| download | zig-fad95741db7529bbad873fb330c25d64ac765340.tar.gz zig-fad95741db7529bbad873fb330c25d64ac765340.zip | |
AstGen: fix loop control flow applying to wrong loop
In the case of 'continue' or 'break' inside the 'else' block of a
'while' or 'for' loop.
Closes #12109
Diffstat (limited to 'lib/std/net')
| -rw-r--r-- | lib/std/net/test.zig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/std/net/test.zig b/lib/std/net/test.zig index 5d350be7e0..f2946777bd 100644 --- a/lib/std/net/test.zig +++ b/lib/std/net/test.zig @@ -104,7 +104,6 @@ test "parse and render UNIX addresses" { } test "resolve DNS" { - if (@import("builtin").zig_backend != .stage1) return error.SkipZigTest; if (builtin.os.tag == .wasi) return error.SkipZigTest; if (builtin.os.tag == .windows) { |
