Commit 7ffe068a79

Andrew Kelley <andrew@ziglang.org>
2025-09-10 09:16:23
delete failing test case
Matthew can revert this commit when he's ready to tackle the assertion failure
1 parent cbbb67c
Changed files (1)
test
test/cases/compile_errors/enum_field_value_references_enum.zig
@@ -1,15 +0,0 @@
-pub const Foo = enum(c_int) {
-    A = Foo.B,
-    C = D,
-
-    pub const B = 0;
-};
-export fn entry() void {
-    const s: Foo = Foo.E;
-    _ = s;
-}
-const D = 1;
-
-// error
-//
-// :1:5: error: dependency loop detected