diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2022-03-01 15:26:31 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2022-03-01 15:26:31 -0700 |
| commit | 8878f085dccaf9efe89a04b458205fddc215e095 (patch) | |
| tree | be49e3d222c1e58d4f962f155d24a197c8bd4778 /test/behavior | |
| parent | f6aaab9406807305c2b48fcd742449c9e91f1851 (diff) | |
| download | zig-8878f085dccaf9efe89a04b458205fddc215e095.tar.gz zig-8878f085dccaf9efe89a04b458205fddc215e095.zip | |
Sema: correct implementation of comptimeOnly for tuples
This makes formatted printing work when mixing comptime and runtime
fields.
Diffstat (limited to 'test/behavior')
| -rw-r--r-- | test/behavior/tuple.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/behavior/tuple.zig b/test/behavior/tuple.zig index 2f4b85d0bc..4c13668dbd 100644 --- a/test/behavior/tuple.zig +++ b/test/behavior/tuple.zig @@ -45,7 +45,7 @@ test "tuple multiplication" { comptime try S.doTheTest(); } -test "tuple concatenation" { +test "more tuple concatenation" { if (builtin.zig_backend != .stage1) return error.SkipZigTest; // TODO const T = struct { |
