std.zig: update syntax for orelse keyword

This commit is contained in:
Andrew Kelley
2018-06-10 01:18:31 -04:00
parent 77678b2cbc
commit 0a95b0f1ff
4 changed files with 9 additions and 38 deletions

View File

@@ -1151,7 +1151,7 @@ test "zig fmt: infix operators" {
\\ _ = i!i;
\\ _ = i ** i;
\\ _ = i ++ i;
\\ _ = i ?? i;
\\ _ = i orelse i;
\\ _ = i % i;
\\ _ = i / i;
\\ _ = i *% i;