std.zig.parser moved container initializer tests down

master
Jimmi Holst Christensen 2018-04-03 15:17:26 +02:00
parent 9d69e94bba
commit 40f35e997a
1 changed files with 10 additions and 10 deletions

View File

@ -2360,16 +2360,6 @@ test "zig fmt: union declaration" {
);
}
test "zig fmt: container initializers" {
try testCanonical(
\\const a1 = []u8{ };
\\const a2 = []u8{ 1, 2, 3, 4 };
\\const s1 = S{ };
\\const s2 = S{ .a = 1, .b = 2, };
\\
);
}
test "zig fmt: switch" {
try testCanonical(
\\test "switch" {
@ -2676,6 +2666,16 @@ test "zig fmt: arrays" {
);
}
test "zig fmt: container initializers" {
try testCanonical(
\\const a1 = []u8{ };
\\const a2 = []u8{ 1, 2, 3, 4 };
\\const s1 = S{ };
\\const s2 = S{ .a = 1, .b = 2, };
\\
);
}
test "zig fmt: precedence" {
try testCanonical(
\\test "precedence" {