Commit 0c16cd2d0e

Andrew Kelley <superjoe30@gmail.com>
2018-05-29 02:23:55
run zig fmt on the codebase
See #1003
1 parent cdf30c3
std/crypto/blake2.zig
@@ -49,16 +49,16 @@ fn Blake2s(comptime out_len: usize) type {
         };
 
         const sigma = [10][16]u8{
-            []const u8 { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 },
-            []const u8 { 14, 10, 4, 8, 9, 15, 13, 6, 1, 12, 0, 2, 11, 7, 5, 3 },
-            []const u8 { 11, 8, 12, 0, 5, 2, 15, 13, 10, 14, 3, 6, 7, 1, 9, 4 },
-            []const u8 { 7, 9, 3, 1, 13, 12, 11, 14, 2, 6, 5, 10, 4, 0, 15, 8 },
-            []const u8 { 9, 0, 5, 7, 2, 4, 10, 15, 14, 1, 11, 12, 6, 8, 3, 13 },
-            []const u8 { 2, 12, 6, 10, 0, 11, 8, 3, 4, 13, 7, 5, 15, 14, 1, 9 },
-            []const u8 { 12, 5, 1, 15, 14, 13, 4, 10, 0, 7, 6, 3, 9, 2, 8, 11 },
-            []const u8 { 13, 11, 7, 14, 12, 1, 3, 9, 5, 0, 15, 4, 8, 6, 2, 10 },
-            []const u8 { 6, 15, 14, 9, 11, 3, 0, 8, 12, 2, 13, 7, 1, 4, 10, 5 },
-            []const u8 { 10, 2, 8, 4, 7, 6, 1, 5, 15, 11, 9, 14, 3, 12, 13, 0 },
+            []const u8{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 },
+            []const u8{ 14, 10, 4, 8, 9, 15, 13, 6, 1, 12, 0, 2, 11, 7, 5, 3 },
+            []const u8{ 11, 8, 12, 0, 5, 2, 15, 13, 10, 14, 3, 6, 7, 1, 9, 4 },
+            []const u8{ 7, 9, 3, 1, 13, 12, 11, 14, 2, 6, 5, 10, 4, 0, 15, 8 },
+            []const u8{ 9, 0, 5, 7, 2, 4, 10, 15, 14, 1, 11, 12, 6, 8, 3, 13 },
+            []const u8{ 2, 12, 6, 10, 0, 11, 8, 3, 4, 13, 7, 5, 15, 14, 1, 9 },
+            []const u8{ 12, 5, 1, 15, 14, 13, 4, 10, 0, 7, 6, 3, 9, 2, 8, 11 },
+            []const u8{ 13, 11, 7, 14, 12, 1, 3, 9, 5, 0, 15, 4, 8, 6, 2, 10 },
+            []const u8{ 6, 15, 14, 9, 11, 3, 0, 8, 12, 2, 13, 7, 1, 4, 10, 5 },
+            []const u8{ 10, 2, 8, 4, 7, 6, 1, 5, 15, 11, 9, 14, 3, 12, 13, 0 },
         };
 
         h: [8]u32,
@@ -282,222 +282,18 @@ fn Blake2b(comptime out_len: usize) type {
         };
 
         const sigma = [12][16]u8{
-            []const u8{
-                0,
-                1,
-                2,
-                3,
-                4,
-                5,
-                6,
-                7,
-                8,
-                9,
-                10,
-                11,
-                12,
-                13,
-                14,
-                15,
-            },
-            []const u8{
-                14,
-                10,
-                4,
-                8,
-                9,
-                15,
-                13,
-                6,
-                1,
-                12,
-                0,
-                2,
-                11,
-                7,
-                5,
-                3,
-            },
-            []const u8{
-                11,
-                8,
-                12,
-                0,
-                5,
-                2,
-                15,
-                13,
-                10,
-                14,
-                3,
-                6,
-                7,
-                1,
-                9,
-                4,
-            },
-            []const u8{
-                7,
-                9,
-                3,
-                1,
-                13,
-                12,
-                11,
-                14,
-                2,
-                6,
-                5,
-                10,
-                4,
-                0,
-                15,
-                8,
-            },
-            []const u8{
-                9,
-                0,
-                5,
-                7,
-                2,
-                4,
-                10,
-                15,
-                14,
-                1,
-                11,
-                12,
-                6,
-                8,
-                3,
-                13,
-            },
-            []const u8{
-                2,
-                12,
-                6,
-                10,
-                0,
-                11,
-                8,
-                3,
-                4,
-                13,
-                7,
-                5,
-                15,
-                14,
-                1,
-                9,
-            },
-            []const u8{
-                12,
-                5,
-                1,
-                15,
-                14,
-                13,
-                4,
-                10,
-                0,
-                7,
-                6,
-                3,
-                9,
-                2,
-                8,
-                11,
-            },
-            []const u8{
-                13,
-                11,
-                7,
-                14,
-                12,
-                1,
-                3,
-                9,
-                5,
-                0,
-                15,
-                4,
-                8,
-                6,
-                2,
-                10,
-            },
-            []const u8{
-                6,
-                15,
-                14,
-                9,
-                11,
-                3,
-                0,
-                8,
-                12,
-                2,
-                13,
-                7,
-                1,
-                4,
-                10,
-                5,
-            },
-            []const u8{
-                10,
-                2,
-                8,
-                4,
-                7,
-                6,
-                1,
-                5,
-                15,
-                11,
-                9,
-                14,
-                3,
-                12,
-                13,
-                0,
-            },
-            []const u8{
-                0,
-                1,
-                2,
-                3,
-                4,
-                5,
-                6,
-                7,
-                8,
-                9,
-                10,
-                11,
-                12,
-                13,
-                14,
-                15,
-            },
-            []const u8{
-                14,
-                10,
-                4,
-                8,
-                9,
-                15,
-                13,
-                6,
-                1,
-                12,
-                0,
-                2,
-                11,
-                7,
-                5,
-                3,
-            },
+            []const u8{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 },
+            []const u8{ 14, 10, 4, 8, 9, 15, 13, 6, 1, 12, 0, 2, 11, 7, 5, 3 },
+            []const u8{ 11, 8, 12, 0, 5, 2, 15, 13, 10, 14, 3, 6, 7, 1, 9, 4 },
+            []const u8{ 7, 9, 3, 1, 13, 12, 11, 14, 2, 6, 5, 10, 4, 0, 15, 8 },
+            []const u8{ 9, 0, 5, 7, 2, 4, 10, 15, 14, 1, 11, 12, 6, 8, 3, 13 },
+            []const u8{ 2, 12, 6, 10, 0, 11, 8, 3, 4, 13, 7, 5, 15, 14, 1, 9 },
+            []const u8{ 12, 5, 1, 15, 14, 13, 4, 10, 0, 7, 6, 3, 9, 2, 8, 11 },
+            []const u8{ 13, 11, 7, 14, 12, 1, 3, 9, 5, 0, 15, 4, 8, 6, 2, 10 },
+            []const u8{ 6, 15, 14, 9, 11, 3, 0, 8, 12, 2, 13, 7, 1, 4, 10, 5 },
+            []const u8{ 10, 2, 8, 4, 7, 6, 1, 5, 15, 11, 9, 14, 3, 12, 13, 0 },
+            []const u8{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 },
+            []const u8{ 14, 10, 4, 8, 9, 15, 13, 6, 1, 12, 0, 2, 11, 7, 5, 3 },
         };
 
         h: [8]u64,
std/fmt/errol/index.zig
@@ -98,7 +98,6 @@ pub fn errol3(value: f64, buffer: []u8) FloatDecimal {
 /// Uncorrected Errol3 double to ASCII conversion.
 fn errol3u(val: f64, buffer: []u8) FloatDecimal {
     // check if in integer or fixed range
-
     if (val > 9.007199254740992e15 and val < 3.40282366920938e+38) {
         return errolInt(val, buffer);
     } else if (val >= 16.0 and val < 9.007199254740992e15) {
@@ -420,7 +419,7 @@ fn fpprev(val: f64) f64 {
     return @bitCast(f64, @bitCast(u64, val) -% 1);
 }
 
-pub const c_digits_lut = []u8 {
+pub const c_digits_lut = []u8{
     '0', '0', '0', '1', '0', '2', '0', '3', '0', '4', '0', '5', '0', '6',
     '0', '7', '0', '8', '0', '9', '1', '0', '1', '1', '1', '2', '1', '3',
     '1', '4', '1', '5', '1', '6', '1', '7', '1', '8', '1', '9', '2', '0',
std/fmt/errol/lookup.zig
@@ -3,604 +3,604 @@ pub const HP = struct {
     off: f64,
 };
 pub const lookup_table = []HP{
-    HP{.val=1.000000e+308, .off=  -1.097906362944045488e+291 },
-    HP{.val=1.000000e+307, .off=  1.396894023974354241e+290 },
-    HP{.val=1.000000e+306, .off=  -1.721606459673645508e+289 },
-    HP{.val=1.000000e+305, .off=  6.074644749446353973e+288 },
-    HP{.val=1.000000e+304, .off=  6.074644749446353567e+287 },
-    HP{.val=1.000000e+303, .off=  -1.617650767864564452e+284 },
-    HP{.val=1.000000e+302, .off=  -7.629703079084895055e+285 },
-    HP{.val=1.000000e+301, .off=  -5.250476025520442286e+284 },
-    HP{.val=1.000000e+300, .off=  -5.250476025520441956e+283 },
-    HP{.val=1.000000e+299, .off=  -5.250476025520441750e+282 },
-    HP{.val=1.000000e+298, .off=  4.043379652465702264e+281 },
-    HP{.val=1.000000e+297, .off=  -1.765280146275637946e+280 },
-    HP{.val=1.000000e+296, .off=  1.865132227937699609e+279 },
-    HP{.val=1.000000e+295, .off=  1.865132227937699609e+278 },
-    HP{.val=1.000000e+294, .off=  -6.643646774124810287e+277 },
-    HP{.val=1.000000e+293, .off=  7.537651562646039934e+276 },
-    HP{.val=1.000000e+292, .off=  -1.325659897835741608e+275 },
-    HP{.val=1.000000e+291, .off=  4.213909764965371606e+274 },
-    HP{.val=1.000000e+290, .off=  -6.172783352786715670e+273 },
-    HP{.val=1.000000e+289, .off=  -6.172783352786715670e+272 },
-    HP{.val=1.000000e+288, .off=  -7.630473539575035471e+270 },
-    HP{.val=1.000000e+287, .off=  -7.525217352494018700e+270 },
-    HP{.val=1.000000e+286, .off=  -3.298861103408696612e+269 },
-    HP{.val=1.000000e+285, .off=  1.984084207947955778e+268 },
-    HP{.val=1.000000e+284, .off=  -7.921438250845767591e+267 },
-    HP{.val=1.000000e+283, .off=  4.460464822646386735e+266 },
-    HP{.val=1.000000e+282, .off=  -3.278224598286209647e+265 },
-    HP{.val=1.000000e+281, .off=  -3.278224598286209737e+264 },
-    HP{.val=1.000000e+280, .off=  -3.278224598286209961e+263 },
-    HP{.val=1.000000e+279, .off=  -5.797329227496039232e+262 },
-    HP{.val=1.000000e+278, .off=  3.649313132040821498e+261 },
-    HP{.val=1.000000e+277, .off=  -2.867878510995372374e+259 },
-    HP{.val=1.000000e+276, .off=  -5.206914080024985409e+259 },
-    HP{.val=1.000000e+275, .off=  4.018322599210230404e+258 },
-    HP{.val=1.000000e+274, .off=  7.862171215558236495e+257 },
-    HP{.val=1.000000e+273, .off=  5.459765830340732821e+256 },
-    HP{.val=1.000000e+272, .off=  -6.552261095746788047e+255 },
-    HP{.val=1.000000e+271, .off=  4.709014147460262298e+254 },
-    HP{.val=1.000000e+270, .off=  -4.675381888545612729e+253 },
-    HP{.val=1.000000e+269, .off=  -4.675381888545612892e+252 },
-    HP{.val=1.000000e+268, .off=  2.656177514583977380e+251 },
-    HP{.val=1.000000e+267, .off=  2.656177514583977190e+250 },
-    HP{.val=1.000000e+266, .off=  -3.071603269111014892e+249 },
-    HP{.val=1.000000e+265, .off=  -6.651466258920385440e+248 },
-    HP{.val=1.000000e+264, .off=  -4.414051890289528972e+247 },
-    HP{.val=1.000000e+263, .off=  -1.617283929500958387e+246 },
-    HP{.val=1.000000e+262, .off=  -1.617283929500958241e+245 },
-    HP{.val=1.000000e+261, .off=  7.122615947963323868e+244 },
-    HP{.val=1.000000e+260, .off=  -6.533477610574617382e+243 },
-    HP{.val=1.000000e+259, .off=  7.122615947963323982e+242 },
-    HP{.val=1.000000e+258, .off=  -5.679971763165996225e+241 },
-    HP{.val=1.000000e+257, .off=  -3.012765990014054219e+240 },
-    HP{.val=1.000000e+256, .off=  -3.012765990014054219e+239 },
-    HP{.val=1.000000e+255, .off=  1.154743030535854616e+238 },
-    HP{.val=1.000000e+254, .off=  6.364129306223240767e+237 },
-    HP{.val=1.000000e+253, .off=  6.364129306223241129e+236 },
-    HP{.val=1.000000e+252, .off=  -9.915202805299840595e+235 },
-    HP{.val=1.000000e+251, .off=  -4.827911520448877980e+234 },
-    HP{.val=1.000000e+250, .off=  7.890316691678530146e+233 },
-    HP{.val=1.000000e+249, .off=  7.890316691678529484e+232 },
-    HP{.val=1.000000e+248, .off=  -4.529828046727141859e+231 },
-    HP{.val=1.000000e+247, .off=  4.785280507077111924e+230 },
-    HP{.val=1.000000e+246, .off=  -6.858605185178205305e+229 },
-    HP{.val=1.000000e+245, .off=  -4.432795665958347728e+228 },
-    HP{.val=1.000000e+244, .off=  -7.465057564983169531e+227 },
-    HP{.val=1.000000e+243, .off=  -7.465057564983169741e+226 },
-    HP{.val=1.000000e+242, .off=  -5.096102956370027445e+225 },
-    HP{.val=1.000000e+241, .off=  -5.096102956370026952e+224 },
-    HP{.val=1.000000e+240, .off=  -1.394611380411992474e+223 },
-    HP{.val=1.000000e+239, .off=  9.188208545617793960e+221 },
-    HP{.val=1.000000e+238, .off=  -4.864759732872650359e+221 },
-    HP{.val=1.000000e+237, .off=  5.979453868566904629e+220 },
-    HP{.val=1.000000e+236, .off=  -5.316601966265964857e+219 },
-    HP{.val=1.000000e+235, .off=  -5.316601966265964701e+218 },
-    HP{.val=1.000000e+234, .off=  -1.786584517880693123e+217 },
-    HP{.val=1.000000e+233, .off=  2.625937292600896716e+216 },
-    HP{.val=1.000000e+232, .off=  -5.647541102052084079e+215 },
-    HP{.val=1.000000e+231, .off=  -5.647541102052083888e+214 },
-    HP{.val=1.000000e+230, .off=  -9.956644432600511943e+213 },
-    HP{.val=1.000000e+229, .off=  8.161138937705571862e+211 },
-    HP{.val=1.000000e+228, .off=  7.549087847752475275e+211 },
-    HP{.val=1.000000e+227, .off=  -9.283347037202319948e+210 },
-    HP{.val=1.000000e+226, .off=  3.866992716668613820e+209 },
-    HP{.val=1.000000e+225, .off=  7.154577655136347262e+208 },
-    HP{.val=1.000000e+224, .off=  3.045096482051680688e+207 },
-    HP{.val=1.000000e+223, .off=  -4.660180717482069567e+206 },
-    HP{.val=1.000000e+222, .off=  -4.660180717482070101e+205 },
-    HP{.val=1.000000e+221, .off=  -4.660180717482069544e+204 },
-    HP{.val=1.000000e+220, .off=  3.562757926310489022e+202 },
-    HP{.val=1.000000e+219, .off=  3.491561111451748149e+202 },
-    HP{.val=1.000000e+218, .off=  -8.265758834125874135e+201 },
-    HP{.val=1.000000e+217, .off=  3.981449442517482365e+200 },
-    HP{.val=1.000000e+216, .off=  -2.142154695804195936e+199 },
-    HP{.val=1.000000e+215, .off=  9.339603063548950188e+198 },
-    HP{.val=1.000000e+214, .off=  4.555537330485139746e+197 },
-    HP{.val=1.000000e+213, .off=  1.565496247320257804e+196 },
-    HP{.val=1.000000e+212, .off=  9.040598955232462036e+195 },
-    HP{.val=1.000000e+211, .off=  4.368659762787334780e+194 },
-    HP{.val=1.000000e+210, .off=  7.288621758065539072e+193 },
-    HP{.val=1.000000e+209, .off=  -7.311188218325485628e+192 },
-    HP{.val=1.000000e+208, .off=  1.813693016918905189e+191 },
-    HP{.val=1.000000e+207, .off=  -3.889357755108838992e+190 },
-    HP{.val=1.000000e+206, .off=  -3.889357755108838992e+189 },
-    HP{.val=1.000000e+205, .off=  -1.661603547285501360e+188 },
-    HP{.val=1.000000e+204, .off=  1.123089212493670643e+187 },
-    HP{.val=1.000000e+203, .off=  1.123089212493670643e+186 },
-    HP{.val=1.000000e+202, .off=  9.825254086803583029e+185 },
-    HP{.val=1.000000e+201, .off=  -3.771878529305654999e+184 },
-    HP{.val=1.000000e+200, .off=  3.026687778748963675e+183 },
-    HP{.val=1.000000e+199, .off=  -9.720624048853446693e+182 },
-    HP{.val=1.000000e+198, .off=  -1.753554156601940139e+181 },
-    HP{.val=1.000000e+197, .off=  4.885670753607648963e+180 },
-    HP{.val=1.000000e+196, .off=  4.885670753607648963e+179 },
-    HP{.val=1.000000e+195, .off=  2.292223523057028076e+178 },
-    HP{.val=1.000000e+194, .off=  5.534032561245303825e+177 },
-    HP{.val=1.000000e+193, .off=  -6.622751331960730683e+176 },
-    HP{.val=1.000000e+192, .off=  -4.090088020876139692e+175 },
-    HP{.val=1.000000e+191, .off=  -7.255917159731877552e+174 },
-    HP{.val=1.000000e+190, .off=  -7.255917159731877992e+173 },
-    HP{.val=1.000000e+189, .off=  -2.309309130269787104e+172 },
-    HP{.val=1.000000e+188, .off=  -2.309309130269787019e+171 },
-    HP{.val=1.000000e+187, .off=  9.284303438781988230e+170 },
-    HP{.val=1.000000e+186, .off=  2.038295583124628364e+169 },
-    HP{.val=1.000000e+185, .off=  2.038295583124628532e+168 },
-    HP{.val=1.000000e+184, .off=  -1.735666841696912925e+167 },
-    HP{.val=1.000000e+183, .off=  5.340512704843477241e+166 },
-    HP{.val=1.000000e+182, .off=  -6.453119872723839321e+165 },
-    HP{.val=1.000000e+181, .off=  8.288920849235306587e+164 },
-    HP{.val=1.000000e+180, .off=  -9.248546019891598293e+162 },
-    HP{.val=1.000000e+179, .off=  1.954450226518486016e+162 },
-    HP{.val=1.000000e+178, .off=  -5.243811844750628197e+161 },
-    HP{.val=1.000000e+177, .off=  -7.448980502074320639e+159 },
-    HP{.val=1.000000e+176, .off=  -7.448980502074319858e+158 },
-    HP{.val=1.000000e+175, .off=  6.284654753766312753e+158 },
-    HP{.val=1.000000e+174, .off=  -6.895756753684458388e+157 },
-    HP{.val=1.000000e+173, .off=  -1.403918625579970616e+156 },
-    HP{.val=1.000000e+172, .off=  -8.268716285710580522e+155 },
-    HP{.val=1.000000e+171, .off=  4.602779327034313170e+154 },
-    HP{.val=1.000000e+170, .off=  -3.441905430931244940e+153 },
-    HP{.val=1.000000e+169, .off=  6.613950516525702884e+152 },
-    HP{.val=1.000000e+168, .off=  6.613950516525702652e+151 },
-    HP{.val=1.000000e+167, .off=  -3.860899428741951187e+150 },
-    HP{.val=1.000000e+166, .off=  5.959272394946474605e+149 },
-    HP{.val=1.000000e+165, .off=  1.005101065481665103e+149 },
-    HP{.val=1.000000e+164, .off=  -1.783349948587918355e+146 },
-    HP{.val=1.000000e+163, .off=  6.215006036188360099e+146 },
-    HP{.val=1.000000e+162, .off=  6.215006036188360099e+145 },
-    HP{.val=1.000000e+161, .off=  -3.774589324822814903e+144 },
-    HP{.val=1.000000e+160, .off=  -6.528407745068226929e+142 },
-    HP{.val=1.000000e+159, .off=  7.151530601283157561e+142 },
-    HP{.val=1.000000e+158, .off=  4.712664546348788765e+141 },
-    HP{.val=1.000000e+157, .off=  1.664081977680827856e+140 },
-    HP{.val=1.000000e+156, .off=  1.664081977680827750e+139 },
-    HP{.val=1.000000e+155, .off=  -7.176231540910168265e+137 },
-    HP{.val=1.000000e+154, .off=  -3.694754568805822650e+137 },
-    HP{.val=1.000000e+153, .off=  2.665969958768462622e+134 },
-    HP{.val=1.000000e+152, .off=  -4.625108135904199522e+135 },
-    HP{.val=1.000000e+151, .off=  -1.717753238721771919e+134 },
-    HP{.val=1.000000e+150, .off=  1.916440382756262433e+133 },
-    HP{.val=1.000000e+149, .off=  -4.897672657515052040e+132 },
-    HP{.val=1.000000e+148, .off=  -4.897672657515052198e+131 },
-    HP{.val=1.000000e+147, .off=  2.200361759434233991e+130 },
-    HP{.val=1.000000e+146, .off=  6.636633270027537273e+129 },
-    HP{.val=1.000000e+145, .off=  1.091293881785907977e+128 },
-    HP{.val=1.000000e+144, .off=  -2.374543235865110597e+127 },
-    HP{.val=1.000000e+143, .off=  -2.374543235865110537e+126 },
-    HP{.val=1.000000e+142, .off=  -5.082228484029969099e+125 },
-    HP{.val=1.000000e+141, .off=  -1.697621923823895943e+124 },
-    HP{.val=1.000000e+140, .off=  -5.928380124081487212e+123 },
-    HP{.val=1.000000e+139, .off=  -3.284156248920492522e+122 },
-    HP{.val=1.000000e+138, .off=  -3.284156248920492706e+121 },
-    HP{.val=1.000000e+137, .off=  -3.284156248920492476e+120 },
-    HP{.val=1.000000e+136, .off=  -5.866406127007401066e+119 },
-    HP{.val=1.000000e+135, .off=  3.817030915818506056e+118 },
-    HP{.val=1.000000e+134, .off=  7.851796350329300951e+117 },
-    HP{.val=1.000000e+133, .off=  -2.235117235947686077e+116 },
-    HP{.val=1.000000e+132, .off=  9.170432597638723691e+114 },
-    HP{.val=1.000000e+131, .off=  8.797444499042767883e+114 },
-    HP{.val=1.000000e+130, .off=  -5.978307824605161274e+113 },
-    HP{.val=1.000000e+129, .off=  1.782556435814758516e+111 },
-    HP{.val=1.000000e+128, .off=  -7.517448691651820362e+111 },
-    HP{.val=1.000000e+127, .off=  4.507089332150205498e+110 },
-    HP{.val=1.000000e+126, .off=  7.513223838100711695e+109 },
-    HP{.val=1.000000e+125, .off=  7.513223838100712113e+108 },
-    HP{.val=1.000000e+124, .off=  5.164681255326878494e+107 },
-    HP{.val=1.000000e+123, .off=  2.229003026859587122e+106 },
-    HP{.val=1.000000e+122, .off=  -1.440594758724527399e+105 },
-    HP{.val=1.000000e+121, .off=  -3.734093374714598783e+104 },
-    HP{.val=1.000000e+120, .off=  1.999653165260579757e+103 },
-    HP{.val=1.000000e+119, .off=  5.583244752745066693e+102 },
-    HP{.val=1.000000e+118, .off=  3.343500010567262234e+101 },
-    HP{.val=1.000000e+117, .off=  -5.055542772599503556e+100 },
-    HP{.val=1.000000e+116, .off=  -1.555941612946684331e+99 },
-    HP{.val=1.000000e+115, .off=  -1.555941612946684331e+98 },
-    HP{.val=1.000000e+114, .off=  -1.555941612946684293e+97 },
-    HP{.val=1.000000e+113, .off=  -1.555941612946684246e+96 },
-    HP{.val=1.000000e+112, .off=  6.988006530736955847e+95 },
-    HP{.val=1.000000e+111, .off=  4.318022735835818244e+94 },
-    HP{.val=1.000000e+110, .off=  -2.356936751417025578e+93 },
-    HP{.val=1.000000e+109, .off=  1.814912928116001926e+92 },
-    HP{.val=1.000000e+108, .off=  -3.399899171300282744e+91 },
-    HP{.val=1.000000e+107, .off=  3.118615952970072913e+90 },
-    HP{.val=1.000000e+106, .off=  -9.103599905036843605e+89 },
-    HP{.val=1.000000e+105, .off=  6.174169917471802325e+88 },
-    HP{.val=1.000000e+104, .off=  -1.915675085734668657e+86 },
-    HP{.val=1.000000e+103, .off=  -1.915675085734668864e+85 },
-    HP{.val=1.000000e+102, .off=  2.295048673475466221e+85 },
-    HP{.val=1.000000e+101, .off=  2.295048673475466135e+84 },
-    HP{.val=1.000000e+100, .off=  -1.590289110975991792e+83 },
-    HP{.val=1.000000e+99, .off=  3.266383119588331155e+82 },
-    HP{.val=1.000000e+98, .off=  2.309629754856292029e+80 },
-    HP{.val=1.000000e+97, .off=  -7.357587384771124533e+80 },
-    HP{.val=1.000000e+96, .off=  -4.986165397190889509e+79 },
-    HP{.val=1.000000e+95, .off=  -2.021887912715594741e+78 },
-    HP{.val=1.000000e+94, .off=  -2.021887912715594638e+77 },
-    HP{.val=1.000000e+93, .off=  -4.337729697461918675e+76 },
-    HP{.val=1.000000e+92, .off=  -4.337729697461918997e+75 },
-    HP{.val=1.000000e+91, .off=  -7.956232486128049702e+74 },
-    HP{.val=1.000000e+90, .off=  3.351588728453609882e+73 },
-    HP{.val=1.000000e+89, .off=  5.246334248081951113e+71 },
-    HP{.val=1.000000e+88, .off=  4.058327554364963672e+71 },
-    HP{.val=1.000000e+87, .off=  4.058327554364963918e+70 },
-    HP{.val=1.000000e+86, .off=  -1.463069523067487266e+69 },
-    HP{.val=1.000000e+85, .off=  -1.463069523067487314e+68 },
-    HP{.val=1.000000e+84, .off=  -5.776660989811589441e+67 },
-    HP{.val=1.000000e+83, .off=  -3.080666323096525761e+66 },
-    HP{.val=1.000000e+82, .off=  3.659320343691134468e+65 },
-    HP{.val=1.000000e+81, .off=  7.871812010433421235e+64 },
-    HP{.val=1.000000e+80, .off=  -2.660986470836727449e+61 },
-    HP{.val=1.000000e+79, .off=  3.264399249934044627e+62 },
-    HP{.val=1.000000e+78, .off=  -8.493621433689703070e+60 },
-    HP{.val=1.000000e+77, .off=  1.721738727445414063e+60 },
-    HP{.val=1.000000e+76, .off=  -4.706013449590547218e+59 },
-    HP{.val=1.000000e+75, .off=  7.346021882351880518e+58 },
-    HP{.val=1.000000e+74, .off=  4.835181188197207515e+57 },
-    HP{.val=1.000000e+73, .off=  1.696630320503867482e+56 },
-    HP{.val=1.000000e+72, .off=  5.619818905120542959e+55 },
-    HP{.val=1.000000e+71, .off=  -4.188152556421145598e+54 },
-    HP{.val=1.000000e+70, .off=  -7.253143638152923145e+53 },
-    HP{.val=1.000000e+69, .off=  -7.253143638152923145e+52 },
-    HP{.val=1.000000e+68, .off=  4.719477774861832896e+51 },
-    HP{.val=1.000000e+67, .off=  1.726322421608144052e+50 },
-    HP{.val=1.000000e+66, .off=  5.467766613175255107e+49 },
-    HP{.val=1.000000e+65, .off=  7.909613737163661911e+47 },
-    HP{.val=1.000000e+64, .off=  -2.132041900945439564e+47 },
-    HP{.val=1.000000e+63, .off=  -5.785795994272697265e+46 },
-    HP{.val=1.000000e+62, .off=  -3.502199685943161329e+45 },
-    HP{.val=1.000000e+61, .off=  5.061286470292598274e+44 },
-    HP{.val=1.000000e+60, .off=  5.061286470292598472e+43 },
-    HP{.val=1.000000e+59, .off=  2.831211950439536034e+42 },
-    HP{.val=1.000000e+58, .off=  5.618805100255863927e+41 },
-    HP{.val=1.000000e+57, .off=  -4.834669211555366251e+40 },
-    HP{.val=1.000000e+56, .off=  -9.190283508143378583e+39 },
-    HP{.val=1.000000e+55, .off=  -1.023506702040855158e+38 },
-    HP{.val=1.000000e+54, .off=  -7.829154040459624616e+37 },
-    HP{.val=1.000000e+53, .off=  6.779051325638372659e+35 },
-    HP{.val=1.000000e+52, .off=  6.779051325638372290e+34 },
-    HP{.val=1.000000e+51, .off=  6.779051325638371598e+33 },
-    HP{.val=1.000000e+50, .off=  -7.629769841091887392e+33 },
-    HP{.val=1.000000e+49, .off=  5.350972305245182400e+32 },
-    HP{.val=1.000000e+48, .off=  -4.384584304507619764e+31 },
-    HP{.val=1.000000e+47, .off=  -4.384584304507619876e+30 },
-    HP{.val=1.000000e+46, .off=  6.860180964052978705e+28 },
-    HP{.val=1.000000e+45, .off=  7.024271097546444878e+28 },
-    HP{.val=1.000000e+44, .off=  -8.821361405306422641e+27 },
-    HP{.val=1.000000e+43, .off=  -1.393721169594140991e+26 },
-    HP{.val=1.000000e+42, .off=  -4.488571267807591679e+25 },
-    HP{.val=1.000000e+41, .off=  -6.200086450407783195e+23 },
-    HP{.val=1.000000e+40, .off=  -3.037860284270036669e+23 },
-    HP{.val=1.000000e+39, .off=  6.029083362839682141e+22 },
-    HP{.val=1.000000e+38, .off=  2.251190176543965970e+21 },
-    HP{.val=1.000000e+37, .off=  4.612373417978788577e+20 },
-    HP{.val=1.000000e+36, .off=  -4.242063737401796198e+19 },
-    HP{.val=1.000000e+35, .off=  3.136633892082024448e+18 },
-    HP{.val=1.000000e+34, .off=  5.442476901295718400e+17 },
-    HP{.val=1.000000e+33, .off=  5.442476901295718400e+16 },
-    HP{.val=1.000000e+32, .off=  -5.366162204393472000e+15 },
-    HP{.val=1.000000e+31, .off=  3.641037050347520000e+14 },
-    HP{.val=1.000000e+30, .off=  -1.988462483865600000e+13 },
-    HP{.val=1.000000e+29, .off=  8.566849142784000000e+12 },
-    HP{.val=1.000000e+28, .off=  4.168802631680000000e+11 },
-    HP{.val=1.000000e+27, .off=  -1.328755507200000000e+10 },
-    HP{.val=1.000000e+26, .off=  -4.764729344000000000e+09 },
-    HP{.val=1.000000e+25, .off=  -9.059696640000000000e+08 },
-    HP{.val=1.000000e+24, .off=  1.677721600000000000e+07 },
-    HP{.val=1.000000e+23, .off=  8.388608000000000000e+06 },
-    HP{.val=1.000000e+22, .off=  0.000000000000000000e+00 },
-    HP{.val=1.000000e+21, .off=  0.000000000000000000e+00 },
-    HP{.val=1.000000e+20, .off=  0.000000000000000000e+00 },
-    HP{.val=1.000000e+19, .off=  0.000000000000000000e+00 },
-    HP{.val=1.000000e+18, .off=  0.000000000000000000e+00 },
-    HP{.val=1.000000e+17, .off=  0.000000000000000000e+00 },
-    HP{.val=1.000000e+16, .off=  0.000000000000000000e+00 },
-    HP{.val=1.000000e+15, .off=  0.000000000000000000e+00 },
-    HP{.val=1.000000e+14, .off=  0.000000000000000000e+00 },
-    HP{.val=1.000000e+13, .off=  0.000000000000000000e+00 },
-    HP{.val=1.000000e+12, .off=  0.000000000000000000e+00 },
-    HP{.val=1.000000e+11, .off=  0.000000000000000000e+00 },
-    HP{.val=1.000000e+10, .off=  0.000000000000000000e+00 },
-    HP{.val=1.000000e+09, .off=  0.000000000000000000e+00 },
-    HP{.val=1.000000e+08, .off=  0.000000000000000000e+00 },
-    HP{.val=1.000000e+07, .off=  0.000000000000000000e+00 },
-    HP{.val=1.000000e+06, .off=  0.000000000000000000e+00 },
-    HP{.val=1.000000e+05, .off=  0.000000000000000000e+00 },
-    HP{.val=1.000000e+04, .off=  0.000000000000000000e+00 },
-    HP{.val=1.000000e+03, .off=  0.000000000000000000e+00 },
-    HP{.val=1.000000e+02, .off=  0.000000000000000000e+00 },
-    HP{.val=1.000000e+01, .off=  0.000000000000000000e+00 },
-    HP{.val=1.000000e+00, .off=  0.000000000000000000e+00 },
-    HP{.val=1.000000e-01, .off=  -5.551115123125783010e-18 },
-    HP{.val=1.000000e-02, .off=  -2.081668171172168436e-19 },
-    HP{.val=1.000000e-03, .off=  -2.081668171172168557e-20 },
-    HP{.val=1.000000e-04, .off=  -4.792173602385929943e-21 },
-    HP{.val=1.000000e-05, .off=  -8.180305391403130547e-22 },
-    HP{.val=1.000000e-06, .off=  4.525188817411374069e-23 },
-    HP{.val=1.000000e-07, .off=  4.525188817411373922e-24 },
-    HP{.val=1.000000e-08, .off=  -2.092256083012847109e-25 },
-    HP{.val=1.000000e-09, .off=  -6.228159145777985254e-26 },
-    HP{.val=1.000000e-10, .off=  -3.643219731549774344e-27 },
-    HP{.val=1.000000e-11, .off=  6.050303071806019080e-28 },
-    HP{.val=1.000000e-12, .off=  2.011335237074438524e-29 },
-    HP{.val=1.000000e-13, .off=  -3.037374556340037101e-30 },
-    HP{.val=1.000000e-14, .off=  1.180690645440101289e-32 },
-    HP{.val=1.000000e-15, .off=  -7.770539987666107583e-32 },
-    HP{.val=1.000000e-16, .off=  2.090221327596539779e-33 },
-    HP{.val=1.000000e-17, .off=  -7.154242405462192144e-34 },
-    HP{.val=1.000000e-18, .off=  -7.154242405462192572e-35 },
-    HP{.val=1.000000e-19, .off=  2.475407316473986894e-36 },
-    HP{.val=1.000000e-20, .off=  5.484672854579042914e-37 },
-    HP{.val=1.000000e-21, .off=  9.246254777210362522e-38 },
-    HP{.val=1.000000e-22, .off=  -4.859677432657087182e-39 },
-    HP{.val=1.000000e-23, .off=  3.956530198510069291e-40 },
-    HP{.val=1.000000e-24, .off=  7.629950044829717753e-41 },
-    HP{.val=1.000000e-25, .off=  -3.849486974919183692e-42 },
-    HP{.val=1.000000e-26, .off=  -3.849486974919184170e-43 },
-    HP{.val=1.000000e-27, .off=  -3.849486974919184070e-44 },
-    HP{.val=1.000000e-28, .off=  2.876745653839937870e-45 },
-    HP{.val=1.000000e-29, .off=  5.679342582489572168e-46 },
-    HP{.val=1.000000e-30, .off=  -8.333642060758598930e-47 },
-    HP{.val=1.000000e-31, .off=  -8.333642060758597958e-48 },
-    HP{.val=1.000000e-32, .off=  -5.596730997624190224e-49 },
-    HP{.val=1.000000e-33, .off=  -5.596730997624190604e-50 },
-    HP{.val=1.000000e-34, .off=  7.232539610818348498e-51 },
-    HP{.val=1.000000e-35, .off=  -7.857545194582380514e-53 },
-    HP{.val=1.000000e-36, .off=  5.896157255772251528e-53 },
-    HP{.val=1.000000e-37, .off=  -6.632427322784915796e-54 },
-    HP{.val=1.000000e-38, .off=  3.808059826012723592e-55 },
-    HP{.val=1.000000e-39, .off=  7.070712060011985131e-56 },
-    HP{.val=1.000000e-40, .off=  7.070712060011985584e-57 },
-    HP{.val=1.000000e-41, .off=  -5.761291134237854167e-59 },
-    HP{.val=1.000000e-42, .off=  -3.762312935688689794e-59 },
-    HP{.val=1.000000e-43, .off=  -7.745042713519821150e-60 },
-    HP{.val=1.000000e-44, .off=  4.700987842202462817e-61 },
-    HP{.val=1.000000e-45, .off=  1.589480203271891964e-62 },
-    HP{.val=1.000000e-46, .off=  -2.299904345391321765e-63 },
-    HP{.val=1.000000e-47, .off=  2.561826340437695261e-64 },
-    HP{.val=1.000000e-48, .off=  2.561826340437695345e-65 },
-    HP{.val=1.000000e-49, .off=  6.360053438741614633e-66 },
-    HP{.val=1.000000e-50, .off=  -7.616223705782342295e-68 },
-    HP{.val=1.000000e-51, .off=  -7.616223705782343324e-69 },
-    HP{.val=1.000000e-52, .off=  -7.616223705782342295e-70 },
-    HP{.val=1.000000e-53, .off=  -3.079876214757872338e-70 },
-    HP{.val=1.000000e-54, .off=  -3.079876214757872821e-71 },
-    HP{.val=1.000000e-55, .off=  5.423954167728123147e-73 },
-    HP{.val=1.000000e-56, .off=  -3.985444122640543680e-73 },
-    HP{.val=1.000000e-57, .off=  4.504255013759498850e-74 },
-    HP{.val=1.000000e-58, .off=  -2.570494266573869991e-75 },
-    HP{.val=1.000000e-59, .off=  -2.570494266573869930e-76 },
-    HP{.val=1.000000e-60, .off=  2.956653608686574324e-77 },
-    HP{.val=1.000000e-61, .off=  -3.952281235388981376e-78 },
-    HP{.val=1.000000e-62, .off=  -3.952281235388981376e-79 },
-    HP{.val=1.000000e-63, .off=  -6.651083908855995172e-80 },
-    HP{.val=1.000000e-64, .off=  3.469426116645307030e-81 },
-    HP{.val=1.000000e-65, .off=  7.686305293937516319e-82 },
-    HP{.val=1.000000e-66, .off=  2.415206322322254927e-83 },
-    HP{.val=1.000000e-67, .off=  5.709643179581793251e-84 },
-    HP{.val=1.000000e-68, .off=  -6.644495035141475923e-85 },
-    HP{.val=1.000000e-69, .off=  3.650620143794581913e-86 },
-    HP{.val=1.000000e-70, .off=  4.333966503770636492e-88 },
-    HP{.val=1.000000e-71, .off=  8.476455383920859113e-88 },
-    HP{.val=1.000000e-72, .off=  3.449543675455986564e-89 },
-    HP{.val=1.000000e-73, .off=  3.077238576654418974e-91 },
-    HP{.val=1.000000e-74, .off=  4.234998629903623140e-91 },
-    HP{.val=1.000000e-75, .off=  4.234998629903623412e-92 },
-    HP{.val=1.000000e-76, .off=  7.303182045714702338e-93 },
-    HP{.val=1.000000e-77, .off=  7.303182045714701699e-94 },
-    HP{.val=1.000000e-78, .off=  1.121271649074855759e-96 },
-    HP{.val=1.000000e-79, .off=  1.121271649074855863e-97 },
-    HP{.val=1.000000e-80, .off=  3.857468248661243988e-97 },
-    HP{.val=1.000000e-81, .off=  3.857468248661244248e-98 },
-    HP{.val=1.000000e-82, .off=  3.857468248661244410e-99 },
-    HP{.val=1.000000e-83, .off=  -3.457651055545315679e-100 },
-    HP{.val=1.000000e-84, .off=  -3.457651055545315933e-101 },
-    HP{.val=1.000000e-85, .off=  2.257285900866059216e-102 },
-    HP{.val=1.000000e-86, .off=  -8.458220892405268345e-103 },
-    HP{.val=1.000000e-87, .off=  -1.761029146610688867e-104 },
-    HP{.val=1.000000e-88, .off=  6.610460535632536565e-105 },
-    HP{.val=1.000000e-89, .off=  -3.853901567171494935e-106 },
-    HP{.val=1.000000e-90, .off=  5.062493089968513723e-108 },
-    HP{.val=1.000000e-91, .off=  -2.218844988608365240e-108 },
-    HP{.val=1.000000e-92, .off=  1.187522883398155383e-109 },
-    HP{.val=1.000000e-93, .off=  9.703442563414457296e-110 },
-    HP{.val=1.000000e-94, .off=  4.380992763404268896e-111 },
-    HP{.val=1.000000e-95, .off=  1.054461638397900823e-112 },
-    HP{.val=1.000000e-96, .off=  9.370789450913819736e-113 },
-    HP{.val=1.000000e-97, .off=  -3.623472756142303998e-114 },
-    HP{.val=1.000000e-98, .off=  6.122223899149788839e-115 },
-    HP{.val=1.000000e-99, .off=  -1.999189980260288281e-116 },
-    HP{.val=1.000000e-100, .off=  -1.999189980260288281e-117 },
-    HP{.val=1.000000e-101, .off=  -5.171617276904849634e-118 },
-    HP{.val=1.000000e-102, .off=  6.724985085512256320e-119 },
-    HP{.val=1.000000e-103, .off=  4.246526260008692213e-120 },
-    HP{.val=1.000000e-104, .off=  7.344599791888147003e-121 },
-    HP{.val=1.000000e-105, .off=  3.472007877038828407e-122 },
-    HP{.val=1.000000e-106, .off=  5.892377823819652194e-123 },
-    HP{.val=1.000000e-107, .off=  -1.585470431324073925e-125 },
-    HP{.val=1.000000e-108, .off=  -3.940375084977444795e-125 },
-    HP{.val=1.000000e-109, .off=  7.869099673288519908e-127 },
-    HP{.val=1.000000e-110, .off=  -5.122196348054018581e-127 },
-    HP{.val=1.000000e-111, .off=  -8.815387795168313713e-128 },
-    HP{.val=1.000000e-112, .off=  5.034080131510290214e-129 },
-    HP{.val=1.000000e-113, .off=  2.148774313452247863e-130 },
-    HP{.val=1.000000e-114, .off=  -5.064490231692858416e-131 },
-    HP{.val=1.000000e-115, .off=  -5.064490231692858166e-132 },
-    HP{.val=1.000000e-116, .off=  5.708726942017560559e-134 },
-    HP{.val=1.000000e-117, .off=  -2.951229134482377772e-134 },
-    HP{.val=1.000000e-118, .off=  1.451398151372789513e-135 },
-    HP{.val=1.000000e-119, .off=  -1.300243902286690040e-136 },
-    HP{.val=1.000000e-120, .off=  2.139308664787659449e-137 },
-    HP{.val=1.000000e-121, .off=  2.139308664787659329e-138 },
-    HP{.val=1.000000e-122, .off=  -5.922142664292847471e-139 },
-    HP{.val=1.000000e-123, .off=  -5.922142664292846912e-140 },
-    HP{.val=1.000000e-124, .off=  6.673875037395443799e-141 },
-    HP{.val=1.000000e-125, .off=  -1.198636026159737932e-142 },
-    HP{.val=1.000000e-126, .off=  5.361789860136246995e-143 },
-    HP{.val=1.000000e-127, .off=  -2.838742497733733936e-144 },
-    HP{.val=1.000000e-128, .off=  -5.401408859568103261e-145 },
-    HP{.val=1.000000e-129, .off=  7.411922949603743011e-146 },
-    HP{.val=1.000000e-130, .off=  -8.604741811861064385e-147 },
-    HP{.val=1.000000e-131, .off=  1.405673664054439890e-148 },
-    HP{.val=1.000000e-132, .off=  1.405673664054439933e-149 },
-    HP{.val=1.000000e-133, .off=  -6.414963426504548053e-150 },
-    HP{.val=1.000000e-134, .off=  -3.971014335704864578e-151 },
-    HP{.val=1.000000e-135, .off=  -3.971014335704864748e-152 },
-    HP{.val=1.000000e-136, .off=  -1.523438813303585576e-154 },
-    HP{.val=1.000000e-137, .off=  2.234325152653707766e-154 },
-    HP{.val=1.000000e-138, .off=  -6.715683724786540160e-155 },
-    HP{.val=1.000000e-139, .off=  -2.986513359186437306e-156 },
-    HP{.val=1.000000e-140, .off=  1.674949597813692102e-157 },
-    HP{.val=1.000000e-141, .off=  -4.151879098436469092e-158 },
-    HP{.val=1.000000e-142, .off=  -4.151879098436469295e-159 },
-    HP{.val=1.000000e-143, .off=  4.952540739454407825e-160 },
-    HP{.val=1.000000e-144, .off=  4.952540739454407667e-161 },
-    HP{.val=1.000000e-145, .off=  8.508954738630531443e-162 },
-    HP{.val=1.000000e-146, .off=  -2.604839008794855481e-163 },
-    HP{.val=1.000000e-147, .off=  2.952057864917838382e-164 },
-    HP{.val=1.000000e-148, .off=  6.425118410988271757e-165 },
-    HP{.val=1.000000e-149, .off=  2.083792728400229858e-166 },
-    HP{.val=1.000000e-150, .off=  -6.295358232172964237e-168 },
-    HP{.val=1.000000e-151, .off=  6.153785555826519421e-168 },
-    HP{.val=1.000000e-152, .off=  -6.564942029880634994e-169 },
-    HP{.val=1.000000e-153, .off=  -3.915207116191644540e-170 },
-    HP{.val=1.000000e-154, .off=  2.709130168030831503e-171 },
-    HP{.val=1.000000e-155, .off=  -1.431080634608215966e-172 },
-    HP{.val=1.000000e-156, .off=  -4.018712386257620994e-173 },
-    HP{.val=1.000000e-157, .off=  5.684906682427646782e-174 },
-    HP{.val=1.000000e-158, .off=  -6.444617153428937489e-175 },
-    HP{.val=1.000000e-159, .off=  1.136335243981427681e-176 },
-    HP{.val=1.000000e-160, .off=  1.136335243981427725e-177 },
-    HP{.val=1.000000e-161, .off=  -2.812077463003137395e-178 },
-    HP{.val=1.000000e-162, .off=  4.591196362592922204e-179 },
-    HP{.val=1.000000e-163, .off=  7.675893789924613703e-180 },
-    HP{.val=1.000000e-164, .off=  3.820022005759999543e-181 },
-    HP{.val=1.000000e-165, .off=  -9.998177244457686588e-183 },
-    HP{.val=1.000000e-166, .off=  -4.012217555824373639e-183 },
-    HP{.val=1.000000e-167, .off=  -2.467177666011174334e-185 },
-    HP{.val=1.000000e-168, .off=  -4.953592503130188139e-185 },
-    HP{.val=1.000000e-169, .off=  -2.011795792799518887e-186 },
-    HP{.val=1.000000e-170, .off=  1.665450095113817423e-187 },
-    HP{.val=1.000000e-171, .off=  1.665450095113817487e-188 },
-    HP{.val=1.000000e-172, .off=  -4.080246604750770577e-189 },
-    HP{.val=1.000000e-173, .off=  -4.080246604750770677e-190 },
-    HP{.val=1.000000e-174, .off=  4.085789420184387951e-192 },
-    HP{.val=1.000000e-175, .off=  4.085789420184388146e-193 },
-    HP{.val=1.000000e-176, .off=  4.085789420184388146e-194 },
-    HP{.val=1.000000e-177, .off=  4.792197640035244894e-194 },
-    HP{.val=1.000000e-178, .off=  4.792197640035244742e-195 },
-    HP{.val=1.000000e-179, .off=  -2.057206575616014662e-196 },
-    HP{.val=1.000000e-180, .off=  -2.057206575616014662e-197 },
-    HP{.val=1.000000e-181, .off=  -4.732755097354788053e-198 },
-    HP{.val=1.000000e-182, .off=  -4.732755097354787867e-199 },
-    HP{.val=1.000000e-183, .off=  -5.522105321379546765e-201 },
-    HP{.val=1.000000e-184, .off=  -5.777891238658996019e-201 },
-    HP{.val=1.000000e-185, .off=  7.542096444923057046e-203 },
-    HP{.val=1.000000e-186, .off=  8.919335748431433483e-203 },
-    HP{.val=1.000000e-187, .off=  -1.287071881492476028e-204 },
-    HP{.val=1.000000e-188, .off=  5.091932887209967018e-205 },
-    HP{.val=1.000000e-189, .off=  -6.868701054107114024e-206 },
-    HP{.val=1.000000e-190, .off=  -1.885103578558330118e-207 },
-    HP{.val=1.000000e-191, .off=  -1.885103578558330205e-208 },
-    HP{.val=1.000000e-192, .off=  -9.671974634103305058e-209 },
-    HP{.val=1.000000e-193, .off=  -4.805180224387695640e-210 },
-    HP{.val=1.000000e-194, .off=  -1.763433718315439838e-211 },
-    HP{.val=1.000000e-195, .off=  -9.367799983496079132e-212 },
-    HP{.val=1.000000e-196, .off=  -4.615071067758179837e-213 },
-    HP{.val=1.000000e-197, .off=  1.325840076914194777e-214 },
-    HP{.val=1.000000e-198, .off=  8.751979007754662425e-215 },
-    HP{.val=1.000000e-199, .off=  1.789973760091724198e-216 },
-    HP{.val=1.000000e-200, .off=  1.789973760091724077e-217 },
-    HP{.val=1.000000e-201, .off=  5.416018159916171171e-218 },
-    HP{.val=1.000000e-202, .off=  -3.649092839644947067e-219 },
-    HP{.val=1.000000e-203, .off=  -3.649092839644947067e-220 },
-    HP{.val=1.000000e-204, .off=  -1.080338554413850956e-222 },
-    HP{.val=1.000000e-205, .off=  -1.080338554413850841e-223 },
-    HP{.val=1.000000e-206, .off=  -2.874486186850417807e-223 },
-    HP{.val=1.000000e-207, .off=  7.499710055933455072e-224 },
-    HP{.val=1.000000e-208, .off=  -9.790617015372999087e-225 },
-    HP{.val=1.000000e-209, .off=  -4.387389805589732612e-226 },
-    HP{.val=1.000000e-210, .off=  -4.387389805589732612e-227 },
-    HP{.val=1.000000e-211, .off=  -8.608661063232909897e-228 },
-    HP{.val=1.000000e-212, .off=  4.582811616902018972e-229 },
-    HP{.val=1.000000e-213, .off=  4.582811616902019155e-230 },
-    HP{.val=1.000000e-214, .off=  8.705146829444184930e-231 },
-    HP{.val=1.000000e-215, .off=  -4.177150709750081830e-232 },
-    HP{.val=1.000000e-216, .off=  -4.177150709750082366e-233 },
-    HP{.val=1.000000e-217, .off=  -8.202868690748290237e-234 },
-    HP{.val=1.000000e-218, .off=  -3.170721214500530119e-235 },
-    HP{.val=1.000000e-219, .off=  -3.170721214500529857e-236 },
-    HP{.val=1.000000e-220, .off=  7.606440013180328441e-238 },
-    HP{.val=1.000000e-221, .off=  -1.696459258568569049e-238 },
-    HP{.val=1.000000e-222, .off=  -4.767838333426821244e-239 },
-    HP{.val=1.000000e-223, .off=  2.910609353718809138e-240 },
-    HP{.val=1.000000e-224, .off=  -1.888420450747209784e-241 },
-    HP{.val=1.000000e-225, .off=  4.110366804835314035e-242 },
-    HP{.val=1.000000e-226, .off=  7.859608839574391006e-243 },
-    HP{.val=1.000000e-227, .off=  5.516332567862468419e-244 },
-    HP{.val=1.000000e-228, .off=  -3.270953451057244613e-245 },
-    HP{.val=1.000000e-229, .off=  -6.932322625607124670e-246 },
-    HP{.val=1.000000e-230, .off=  -4.643966891513449762e-247 },
-    HP{.val=1.000000e-231, .off=  1.076922443720738305e-248 },
-    HP{.val=1.000000e-232, .off=  -2.498633390800628939e-249 },
-    HP{.val=1.000000e-233, .off=  4.205533798926934891e-250 },
-    HP{.val=1.000000e-234, .off=  4.205533798926934891e-251 },
-    HP{.val=1.000000e-235, .off=  4.205533798926934697e-252 },
-    HP{.val=1.000000e-236, .off=  -4.523850562697497656e-253 },
-    HP{.val=1.000000e-237, .off=  9.320146633177728298e-255 },
-    HP{.val=1.000000e-238, .off=  9.320146633177728062e-256 },
-    HP{.val=1.000000e-239, .off=  -7.592774752331086440e-256 },
-    HP{.val=1.000000e-240, .off=  3.063212017229987840e-257 },
-    HP{.val=1.000000e-241, .off=  3.063212017229987562e-258 },
-    HP{.val=1.000000e-242, .off=  3.063212017229987562e-259 },
-    HP{.val=1.000000e-243, .off=  4.616527473176159842e-261 },
-    HP{.val=1.000000e-244, .off=  6.965550922098544975e-261 },
-    HP{.val=1.000000e-245, .off=  6.965550922098544749e-262 },
-    HP{.val=1.000000e-246, .off=  4.424965697574744679e-263 },
-    HP{.val=1.000000e-247, .off=  -1.926497363734756420e-264 },
-    HP{.val=1.000000e-248, .off=  2.043167049583681740e-265 },
-    HP{.val=1.000000e-249, .off=  -5.399953725388390154e-266 },
-    HP{.val=1.000000e-250, .off=  -5.399953725388389982e-267 },
-    HP{.val=1.000000e-251, .off=  -1.523328321757102663e-268 },
-    HP{.val=1.000000e-252, .off=  5.745344310051561161e-269 },
-    HP{.val=1.000000e-253, .off=  -6.369110076296211879e-270 },
-    HP{.val=1.000000e-254, .off=  8.773957906638504842e-271 },
-    HP{.val=1.000000e-255, .off=  -6.904595826956931908e-273 },
-    HP{.val=1.000000e-256, .off=  2.267170882721243669e-273 },
-    HP{.val=1.000000e-257, .off=  2.267170882721243669e-274 },
-    HP{.val=1.000000e-258, .off=  4.577819683828225398e-275 },
-    HP{.val=1.000000e-259, .off=  -6.975424321706684210e-276 },
-    HP{.val=1.000000e-260, .off=  3.855741933482293648e-277 },
-    HP{.val=1.000000e-261, .off=  1.599248963651256552e-278 },
-    HP{.val=1.000000e-262, .off=  -1.221367248637539543e-279 },
-    HP{.val=1.000000e-263, .off=  -1.221367248637539494e-280 },
-    HP{.val=1.000000e-264, .off=  -1.221367248637539647e-281 },
-    HP{.val=1.000000e-265, .off=  1.533140771175737943e-282 },
-    HP{.val=1.000000e-266, .off=  1.533140771175737895e-283 },
-    HP{.val=1.000000e-267, .off=  1.533140771175738074e-284 },
-    HP{.val=1.000000e-268, .off=  4.223090009274641634e-285 },
-    HP{.val=1.000000e-269, .off=  4.223090009274641634e-286 },
-    HP{.val=1.000000e-270, .off=  -4.183001359784432924e-287 },
-    HP{.val=1.000000e-271, .off=  3.697709298708449474e-288 },
-    HP{.val=1.000000e-272, .off=  6.981338739747150474e-289 },
-    HP{.val=1.000000e-273, .off=  -9.436808465446354751e-290 },
-    HP{.val=1.000000e-274, .off=  3.389869038611071740e-291 },
-    HP{.val=1.000000e-275, .off=  6.596538414625427829e-292 },
-    HP{.val=1.000000e-276, .off=  -9.436808465446354618e-293 },
-    HP{.val=1.000000e-277, .off=  3.089243784609725523e-294 },
-    HP{.val=1.000000e-278, .off=  6.220756847123745836e-295 },
-    HP{.val=1.000000e-279, .off=  -5.522417137303829470e-296 },
-    HP{.val=1.000000e-280, .off=  4.263561183052483059e-297 },
-    HP{.val=1.000000e-281, .off=  -1.852675267170212272e-298 },
-    HP{.val=1.000000e-282, .off=  -1.852675267170212378e-299 },
-    HP{.val=1.000000e-283, .off=  5.314789322934508480e-300 },
-    HP{.val=1.000000e-284, .off=  -3.644541414696392675e-301 },
-    HP{.val=1.000000e-285, .off=  -7.377595888709267777e-302 },
-    HP{.val=1.000000e-286, .off=  -5.044436842451220838e-303 },
-    HP{.val=1.000000e-287, .off=  -2.127988034628661760e-304 },
-    HP{.val=1.000000e-288, .off=  -5.773549044406860911e-305 },
-    HP{.val=1.000000e-289, .off=  -1.216597782184112068e-306 },
-    HP{.val=1.000000e-290, .off=  -6.912786859962547924e-307 },
-    HP{.val=1.000000e-291, .off=  3.767567660872018813e-308 },
+    HP{ .val = 1.000000e+308, .off = -1.097906362944045488e+291 },
+    HP{ .val = 1.000000e+307, .off = 1.396894023974354241e+290 },
+    HP{ .val = 1.000000e+306, .off = -1.721606459673645508e+289 },
+    HP{ .val = 1.000000e+305, .off = 6.074644749446353973e+288 },
+    HP{ .val = 1.000000e+304, .off = 6.074644749446353567e+287 },
+    HP{ .val = 1.000000e+303, .off = -1.617650767864564452e+284 },
+    HP{ .val = 1.000000e+302, .off = -7.629703079084895055e+285 },
+    HP{ .val = 1.000000e+301, .off = -5.250476025520442286e+284 },
+    HP{ .val = 1.000000e+300, .off = -5.250476025520441956e+283 },
+    HP{ .val = 1.000000e+299, .off = -5.250476025520441750e+282 },
+    HP{ .val = 1.000000e+298, .off = 4.043379652465702264e+281 },
+    HP{ .val = 1.000000e+297, .off = -1.765280146275637946e+280 },
+    HP{ .val = 1.000000e+296, .off = 1.865132227937699609e+279 },
+    HP{ .val = 1.000000e+295, .off = 1.865132227937699609e+278 },
+    HP{ .val = 1.000000e+294, .off = -6.643646774124810287e+277 },
+    HP{ .val = 1.000000e+293, .off = 7.537651562646039934e+276 },
+    HP{ .val = 1.000000e+292, .off = -1.325659897835741608e+275 },
+    HP{ .val = 1.000000e+291, .off = 4.213909764965371606e+274 },
+    HP{ .val = 1.000000e+290, .off = -6.172783352786715670e+273 },
+    HP{ .val = 1.000000e+289, .off = -6.172783352786715670e+272 },
+    HP{ .val = 1.000000e+288, .off = -7.630473539575035471e+270 },
+    HP{ .val = 1.000000e+287, .off = -7.525217352494018700e+270 },
+    HP{ .val = 1.000000e+286, .off = -3.298861103408696612e+269 },
+    HP{ .val = 1.000000e+285, .off = 1.984084207947955778e+268 },
+    HP{ .val = 1.000000e+284, .off = -7.921438250845767591e+267 },
+    HP{ .val = 1.000000e+283, .off = 4.460464822646386735e+266 },
+    HP{ .val = 1.000000e+282, .off = -3.278224598286209647e+265 },
+    HP{ .val = 1.000000e+281, .off = -3.278224598286209737e+264 },
+    HP{ .val = 1.000000e+280, .off = -3.278224598286209961e+263 },
+    HP{ .val = 1.000000e+279, .off = -5.797329227496039232e+262 },
+    HP{ .val = 1.000000e+278, .off = 3.649313132040821498e+261 },
+    HP{ .val = 1.000000e+277, .off = -2.867878510995372374e+259 },
+    HP{ .val = 1.000000e+276, .off = -5.206914080024985409e+259 },
+    HP{ .val = 1.000000e+275, .off = 4.018322599210230404e+258 },
+    HP{ .val = 1.000000e+274, .off = 7.862171215558236495e+257 },
+    HP{ .val = 1.000000e+273, .off = 5.459765830340732821e+256 },
+    HP{ .val = 1.000000e+272, .off = -6.552261095746788047e+255 },
+    HP{ .val = 1.000000e+271, .off = 4.709014147460262298e+254 },
+    HP{ .val = 1.000000e+270, .off = -4.675381888545612729e+253 },
+    HP{ .val = 1.000000e+269, .off = -4.675381888545612892e+252 },
+    HP{ .val = 1.000000e+268, .off = 2.656177514583977380e+251 },
+    HP{ .val = 1.000000e+267, .off = 2.656177514583977190e+250 },
+    HP{ .val = 1.000000e+266, .off = -3.071603269111014892e+249 },
+    HP{ .val = 1.000000e+265, .off = -6.651466258920385440e+248 },
+    HP{ .val = 1.000000e+264, .off = -4.414051890289528972e+247 },
+    HP{ .val = 1.000000e+263, .off = -1.617283929500958387e+246 },
+    HP{ .val = 1.000000e+262, .off = -1.617283929500958241e+245 },
+    HP{ .val = 1.000000e+261, .off = 7.122615947963323868e+244 },
+    HP{ .val = 1.000000e+260, .off = -6.533477610574617382e+243 },
+    HP{ .val = 1.000000e+259, .off = 7.122615947963323982e+242 },
+    HP{ .val = 1.000000e+258, .off = -5.679971763165996225e+241 },
+    HP{ .val = 1.000000e+257, .off = -3.012765990014054219e+240 },
+    HP{ .val = 1.000000e+256, .off = -3.012765990014054219e+239 },
+    HP{ .val = 1.000000e+255, .off = 1.154743030535854616e+238 },
+    HP{ .val = 1.000000e+254, .off = 6.364129306223240767e+237 },
+    HP{ .val = 1.000000e+253, .off = 6.364129306223241129e+236 },
+    HP{ .val = 1.000000e+252, .off = -9.915202805299840595e+235 },
+    HP{ .val = 1.000000e+251, .off = -4.827911520448877980e+234 },
+    HP{ .val = 1.000000e+250, .off = 7.890316691678530146e+233 },
+    HP{ .val = 1.000000e+249, .off = 7.890316691678529484e+232 },
+    HP{ .val = 1.000000e+248, .off = -4.529828046727141859e+231 },
+    HP{ .val = 1.000000e+247, .off = 4.785280507077111924e+230 },
+    HP{ .val = 1.000000e+246, .off = -6.858605185178205305e+229 },
+    HP{ .val = 1.000000e+245, .off = -4.432795665958347728e+228 },
+    HP{ .val = 1.000000e+244, .off = -7.465057564983169531e+227 },
+    HP{ .val = 1.000000e+243, .off = -7.465057564983169741e+226 },
+    HP{ .val = 1.000000e+242, .off = -5.096102956370027445e+225 },
+    HP{ .val = 1.000000e+241, .off = -5.096102956370026952e+224 },
+    HP{ .val = 1.000000e+240, .off = -1.394611380411992474e+223 },
+    HP{ .val = 1.000000e+239, .off = 9.188208545617793960e+221 },
+    HP{ .val = 1.000000e+238, .off = -4.864759732872650359e+221 },
+    HP{ .val = 1.000000e+237, .off = 5.979453868566904629e+220 },
+    HP{ .val = 1.000000e+236, .off = -5.316601966265964857e+219 },
+    HP{ .val = 1.000000e+235, .off = -5.316601966265964701e+218 },
+    HP{ .val = 1.000000e+234, .off = -1.786584517880693123e+217 },
+    HP{ .val = 1.000000e+233, .off = 2.625937292600896716e+216 },
+    HP{ .val = 1.000000e+232, .off = -5.647541102052084079e+215 },
+    HP{ .val = 1.000000e+231, .off = -5.647541102052083888e+214 },
+    HP{ .val = 1.000000e+230, .off = -9.956644432600511943e+213 },
+    HP{ .val = 1.000000e+229, .off = 8.161138937705571862e+211 },
+    HP{ .val = 1.000000e+228, .off = 7.549087847752475275e+211 },
+    HP{ .val = 1.000000e+227, .off = -9.283347037202319948e+210 },
+    HP{ .val = 1.000000e+226, .off = 3.866992716668613820e+209 },
+    HP{ .val = 1.000000e+225, .off = 7.154577655136347262e+208 },
+    HP{ .val = 1.000000e+224, .off = 3.045096482051680688e+207 },
+    HP{ .val = 1.000000e+223, .off = -4.660180717482069567e+206 },
+    HP{ .val = 1.000000e+222, .off = -4.660180717482070101e+205 },
+    HP{ .val = 1.000000e+221, .off = -4.660180717482069544e+204 },
+    HP{ .val = 1.000000e+220, .off = 3.562757926310489022e+202 },
+    HP{ .val = 1.000000e+219, .off = 3.491561111451748149e+202 },
+    HP{ .val = 1.000000e+218, .off = -8.265758834125874135e+201 },
+    HP{ .val = 1.000000e+217, .off = 3.981449442517482365e+200 },
+    HP{ .val = 1.000000e+216, .off = -2.142154695804195936e+199 },
+    HP{ .val = 1.000000e+215, .off = 9.339603063548950188e+198 },
+    HP{ .val = 1.000000e+214, .off = 4.555537330485139746e+197 },
+    HP{ .val = 1.000000e+213, .off = 1.565496247320257804e+196 },
+    HP{ .val = 1.000000e+212, .off = 9.040598955232462036e+195 },
+    HP{ .val = 1.000000e+211, .off = 4.368659762787334780e+194 },
+    HP{ .val = 1.000000e+210, .off = 7.288621758065539072e+193 },
+    HP{ .val = 1.000000e+209, .off = -7.311188218325485628e+192 },
+    HP{ .val = 1.000000e+208, .off = 1.813693016918905189e+191 },
+    HP{ .val = 1.000000e+207, .off = -3.889357755108838992e+190 },
+    HP{ .val = 1.000000e+206, .off = -3.889357755108838992e+189 },
+    HP{ .val = 1.000000e+205, .off = -1.661603547285501360e+188 },
+    HP{ .val = 1.000000e+204, .off = 1.123089212493670643e+187 },
+    HP{ .val = 1.000000e+203, .off = 1.123089212493670643e+186 },
+    HP{ .val = 1.000000e+202, .off = 9.825254086803583029e+185 },
+    HP{ .val = 1.000000e+201, .off = -3.771878529305654999e+184 },
+    HP{ .val = 1.000000e+200, .off = 3.026687778748963675e+183 },
+    HP{ .val = 1.000000e+199, .off = -9.720624048853446693e+182 },
+    HP{ .val = 1.000000e+198, .off = -1.753554156601940139e+181 },
+    HP{ .val = 1.000000e+197, .off = 4.885670753607648963e+180 },
+    HP{ .val = 1.000000e+196, .off = 4.885670753607648963e+179 },
+    HP{ .val = 1.000000e+195, .off = 2.292223523057028076e+178 },
+    HP{ .val = 1.000000e+194, .off = 5.534032561245303825e+177 },
+    HP{ .val = 1.000000e+193, .off = -6.622751331960730683e+176 },
+    HP{ .val = 1.000000e+192, .off = -4.090088020876139692e+175 },
+    HP{ .val = 1.000000e+191, .off = -7.255917159731877552e+174 },
+    HP{ .val = 1.000000e+190, .off = -7.255917159731877992e+173 },
+    HP{ .val = 1.000000e+189, .off = -2.309309130269787104e+172 },
+    HP{ .val = 1.000000e+188, .off = -2.309309130269787019e+171 },
+    HP{ .val = 1.000000e+187, .off = 9.284303438781988230e+170 },
+    HP{ .val = 1.000000e+186, .off = 2.038295583124628364e+169 },
+    HP{ .val = 1.000000e+185, .off = 2.038295583124628532e+168 },
+    HP{ .val = 1.000000e+184, .off = -1.735666841696912925e+167 },
+    HP{ .val = 1.000000e+183, .off = 5.340512704843477241e+166 },
+    HP{ .val = 1.000000e+182, .off = -6.453119872723839321e+165 },
+    HP{ .val = 1.000000e+181, .off = 8.288920849235306587e+164 },
+    HP{ .val = 1.000000e+180, .off = -9.248546019891598293e+162 },
+    HP{ .val = 1.000000e+179, .off = 1.954450226518486016e+162 },
+    HP{ .val = 1.000000e+178, .off = -5.243811844750628197e+161 },
+    HP{ .val = 1.000000e+177, .off = -7.448980502074320639e+159 },
+    HP{ .val = 1.000000e+176, .off = -7.448980502074319858e+158 },
+    HP{ .val = 1.000000e+175, .off = 6.284654753766312753e+158 },
+    HP{ .val = 1.000000e+174, .off = -6.895756753684458388e+157 },
+    HP{ .val = 1.000000e+173, .off = -1.403918625579970616e+156 },
+    HP{ .val = 1.000000e+172, .off = -8.268716285710580522e+155 },
+    HP{ .val = 1.000000e+171, .off = 4.602779327034313170e+154 },
+    HP{ .val = 1.000000e+170, .off = -3.441905430931244940e+153 },
+    HP{ .val = 1.000000e+169, .off = 6.613950516525702884e+152 },
+    HP{ .val = 1.000000e+168, .off = 6.613950516525702652e+151 },
+    HP{ .val = 1.000000e+167, .off = -3.860899428741951187e+150 },
+    HP{ .val = 1.000000e+166, .off = 5.959272394946474605e+149 },
+    HP{ .val = 1.000000e+165, .off = 1.005101065481665103e+149 },
+    HP{ .val = 1.000000e+164, .off = -1.783349948587918355e+146 },
+    HP{ .val = 1.000000e+163, .off = 6.215006036188360099e+146 },
+    HP{ .val = 1.000000e+162, .off = 6.215006036188360099e+145 },
+    HP{ .val = 1.000000e+161, .off = -3.774589324822814903e+144 },
+    HP{ .val = 1.000000e+160, .off = -6.528407745068226929e+142 },
+    HP{ .val = 1.000000e+159, .off = 7.151530601283157561e+142 },
+    HP{ .val = 1.000000e+158, .off = 4.712664546348788765e+141 },
+    HP{ .val = 1.000000e+157, .off = 1.664081977680827856e+140 },
+    HP{ .val = 1.000000e+156, .off = 1.664081977680827750e+139 },
+    HP{ .val = 1.000000e+155, .off = -7.176231540910168265e+137 },
+    HP{ .val = 1.000000e+154, .off = -3.694754568805822650e+137 },
+    HP{ .val = 1.000000e+153, .off = 2.665969958768462622e+134 },
+    HP{ .val = 1.000000e+152, .off = -4.625108135904199522e+135 },
+    HP{ .val = 1.000000e+151, .off = -1.717753238721771919e+134 },
+    HP{ .val = 1.000000e+150, .off = 1.916440382756262433e+133 },
+    HP{ .val = 1.000000e+149, .off = -4.897672657515052040e+132 },
+    HP{ .val = 1.000000e+148, .off = -4.897672657515052198e+131 },
+    HP{ .val = 1.000000e+147, .off = 2.200361759434233991e+130 },
+    HP{ .val = 1.000000e+146, .off = 6.636633270027537273e+129 },
+    HP{ .val = 1.000000e+145, .off = 1.091293881785907977e+128 },
+    HP{ .val = 1.000000e+144, .off = -2.374543235865110597e+127 },
+    HP{ .val = 1.000000e+143, .off = -2.374543235865110537e+126 },
+    HP{ .val = 1.000000e+142, .off = -5.082228484029969099e+125 },
+    HP{ .val = 1.000000e+141, .off = -1.697621923823895943e+124 },
+    HP{ .val = 1.000000e+140, .off = -5.928380124081487212e+123 },
+    HP{ .val = 1.000000e+139, .off = -3.284156248920492522e+122 },
+    HP{ .val = 1.000000e+138, .off = -3.284156248920492706e+121 },
+    HP{ .val = 1.000000e+137, .off = -3.284156248920492476e+120 },
+    HP{ .val = 1.000000e+136, .off = -5.866406127007401066e+119 },
+    HP{ .val = 1.000000e+135, .off = 3.817030915818506056e+118 },
+    HP{ .val = 1.000000e+134, .off = 7.851796350329300951e+117 },
+    HP{ .val = 1.000000e+133, .off = -2.235117235947686077e+116 },
+    HP{ .val = 1.000000e+132, .off = 9.170432597638723691e+114 },
+    HP{ .val = 1.000000e+131, .off = 8.797444499042767883e+114 },
+    HP{ .val = 1.000000e+130, .off = -5.978307824605161274e+113 },
+    HP{ .val = 1.000000e+129, .off = 1.782556435814758516e+111 },
+    HP{ .val = 1.000000e+128, .off = -7.517448691651820362e+111 },
+    HP{ .val = 1.000000e+127, .off = 4.507089332150205498e+110 },
+    HP{ .val = 1.000000e+126, .off = 7.513223838100711695e+109 },
+    HP{ .val = 1.000000e+125, .off = 7.513223838100712113e+108 },
+    HP{ .val = 1.000000e+124, .off = 5.164681255326878494e+107 },
+    HP{ .val = 1.000000e+123, .off = 2.229003026859587122e+106 },
+    HP{ .val = 1.000000e+122, .off = -1.440594758724527399e+105 },
+    HP{ .val = 1.000000e+121, .off = -3.734093374714598783e+104 },
+    HP{ .val = 1.000000e+120, .off = 1.999653165260579757e+103 },
+    HP{ .val = 1.000000e+119, .off = 5.583244752745066693e+102 },
+    HP{ .val = 1.000000e+118, .off = 3.343500010567262234e+101 },
+    HP{ .val = 1.000000e+117, .off = -5.055542772599503556e+100 },
+    HP{ .val = 1.000000e+116, .off = -1.555941612946684331e+99 },
+    HP{ .val = 1.000000e+115, .off = -1.555941612946684331e+98 },
+    HP{ .val = 1.000000e+114, .off = -1.555941612946684293e+97 },
+    HP{ .val = 1.000000e+113, .off = -1.555941612946684246e+96 },
+    HP{ .val = 1.000000e+112, .off = 6.988006530736955847e+95 },
+    HP{ .val = 1.000000e+111, .off = 4.318022735835818244e+94 },
+    HP{ .val = 1.000000e+110, .off = -2.356936751417025578e+93 },
+    HP{ .val = 1.000000e+109, .off = 1.814912928116001926e+92 },
+    HP{ .val = 1.000000e+108, .off = -3.399899171300282744e+91 },
+    HP{ .val = 1.000000e+107, .off = 3.118615952970072913e+90 },
+    HP{ .val = 1.000000e+106, .off = -9.103599905036843605e+89 },
+    HP{ .val = 1.000000e+105, .off = 6.174169917471802325e+88 },
+    HP{ .val = 1.000000e+104, .off = -1.915675085734668657e+86 },
+    HP{ .val = 1.000000e+103, .off = -1.915675085734668864e+85 },
+    HP{ .val = 1.000000e+102, .off = 2.295048673475466221e+85 },
+    HP{ .val = 1.000000e+101, .off = 2.295048673475466135e+84 },
+    HP{ .val = 1.000000e+100, .off = -1.590289110975991792e+83 },
+    HP{ .val = 1.000000e+99, .off = 3.266383119588331155e+82 },
+    HP{ .val = 1.000000e+98, .off = 2.309629754856292029e+80 },
+    HP{ .val = 1.000000e+97, .off = -7.357587384771124533e+80 },
+    HP{ .val = 1.000000e+96, .off = -4.986165397190889509e+79 },
+    HP{ .val = 1.000000e+95, .off = -2.021887912715594741e+78 },
+    HP{ .val = 1.000000e+94, .off = -2.021887912715594638e+77 },
+    HP{ .val = 1.000000e+93, .off = -4.337729697461918675e+76 },
+    HP{ .val = 1.000000e+92, .off = -4.337729697461918997e+75 },
+    HP{ .val = 1.000000e+91, .off = -7.956232486128049702e+74 },
+    HP{ .val = 1.000000e+90, .off = 3.351588728453609882e+73 },
+    HP{ .val = 1.000000e+89, .off = 5.246334248081951113e+71 },
+    HP{ .val = 1.000000e+88, .off = 4.058327554364963672e+71 },
+    HP{ .val = 1.000000e+87, .off = 4.058327554364963918e+70 },
+    HP{ .val = 1.000000e+86, .off = -1.463069523067487266e+69 },
+    HP{ .val = 1.000000e+85, .off = -1.463069523067487314e+68 },
+    HP{ .val = 1.000000e+84, .off = -5.776660989811589441e+67 },
+    HP{ .val = 1.000000e+83, .off = -3.080666323096525761e+66 },
+    HP{ .val = 1.000000e+82, .off = 3.659320343691134468e+65 },
+    HP{ .val = 1.000000e+81, .off = 7.871812010433421235e+64 },
+    HP{ .val = 1.000000e+80, .off = -2.660986470836727449e+61 },
+    HP{ .val = 1.000000e+79, .off = 3.264399249934044627e+62 },
+    HP{ .val = 1.000000e+78, .off = -8.493621433689703070e+60 },
+    HP{ .val = 1.000000e+77, .off = 1.721738727445414063e+60 },
+    HP{ .val = 1.000000e+76, .off = -4.706013449590547218e+59 },
+    HP{ .val = 1.000000e+75, .off = 7.346021882351880518e+58 },
+    HP{ .val = 1.000000e+74, .off = 4.835181188197207515e+57 },
+    HP{ .val = 1.000000e+73, .off = 1.696630320503867482e+56 },
+    HP{ .val = 1.000000e+72, .off = 5.619818905120542959e+55 },
+    HP{ .val = 1.000000e+71, .off = -4.188152556421145598e+54 },
+    HP{ .val = 1.000000e+70, .off = -7.253143638152923145e+53 },
+    HP{ .val = 1.000000e+69, .off = -7.253143638152923145e+52 },
+    HP{ .val = 1.000000e+68, .off = 4.719477774861832896e+51 },
+    HP{ .val = 1.000000e+67, .off = 1.726322421608144052e+50 },
+    HP{ .val = 1.000000e+66, .off = 5.467766613175255107e+49 },
+    HP{ .val = 1.000000e+65, .off = 7.909613737163661911e+47 },
+    HP{ .val = 1.000000e+64, .off = -2.132041900945439564e+47 },
+    HP{ .val = 1.000000e+63, .off = -5.785795994272697265e+46 },
+    HP{ .val = 1.000000e+62, .off = -3.502199685943161329e+45 },
+    HP{ .val = 1.000000e+61, .off = 5.061286470292598274e+44 },
+    HP{ .val = 1.000000e+60, .off = 5.061286470292598472e+43 },
+    HP{ .val = 1.000000e+59, .off = 2.831211950439536034e+42 },
+    HP{ .val = 1.000000e+58, .off = 5.618805100255863927e+41 },
+    HP{ .val = 1.000000e+57, .off = -4.834669211555366251e+40 },
+    HP{ .val = 1.000000e+56, .off = -9.190283508143378583e+39 },
+    HP{ .val = 1.000000e+55, .off = -1.023506702040855158e+38 },
+    HP{ .val = 1.000000e+54, .off = -7.829154040459624616e+37 },
+    HP{ .val = 1.000000e+53, .off = 6.779051325638372659e+35 },
+    HP{ .val = 1.000000e+52, .off = 6.779051325638372290e+34 },
+    HP{ .val = 1.000000e+51, .off = 6.779051325638371598e+33 },
+    HP{ .val = 1.000000e+50, .off = -7.629769841091887392e+33 },
+    HP{ .val = 1.000000e+49, .off = 5.350972305245182400e+32 },
+    HP{ .val = 1.000000e+48, .off = -4.384584304507619764e+31 },
+    HP{ .val = 1.000000e+47, .off = -4.384584304507619876e+30 },
+    HP{ .val = 1.000000e+46, .off = 6.860180964052978705e+28 },
+    HP{ .val = 1.000000e+45, .off = 7.024271097546444878e+28 },
+    HP{ .val = 1.000000e+44, .off = -8.821361405306422641e+27 },
+    HP{ .val = 1.000000e+43, .off = -1.393721169594140991e+26 },
+    HP{ .val = 1.000000e+42, .off = -4.488571267807591679e+25 },
+    HP{ .val = 1.000000e+41, .off = -6.200086450407783195e+23 },
+    HP{ .val = 1.000000e+40, .off = -3.037860284270036669e+23 },
+    HP{ .val = 1.000000e+39, .off = 6.029083362839682141e+22 },
+    HP{ .val = 1.000000e+38, .off = 2.251190176543965970e+21 },
+    HP{ .val = 1.000000e+37, .off = 4.612373417978788577e+20 },
+    HP{ .val = 1.000000e+36, .off = -4.242063737401796198e+19 },
+    HP{ .val = 1.000000e+35, .off = 3.136633892082024448e+18 },
+    HP{ .val = 1.000000e+34, .off = 5.442476901295718400e+17 },
+    HP{ .val = 1.000000e+33, .off = 5.442476901295718400e+16 },
+    HP{ .val = 1.000000e+32, .off = -5.366162204393472000e+15 },
+    HP{ .val = 1.000000e+31, .off = 3.641037050347520000e+14 },
+    HP{ .val = 1.000000e+30, .off = -1.988462483865600000e+13 },
+    HP{ .val = 1.000000e+29, .off = 8.566849142784000000e+12 },
+    HP{ .val = 1.000000e+28, .off = 4.168802631680000000e+11 },
+    HP{ .val = 1.000000e+27, .off = -1.328755507200000000e+10 },
+    HP{ .val = 1.000000e+26, .off = -4.764729344000000000e+09 },
+    HP{ .val = 1.000000e+25, .off = -9.059696640000000000e+08 },
+    HP{ .val = 1.000000e+24, .off = 1.677721600000000000e+07 },
+    HP{ .val = 1.000000e+23, .off = 8.388608000000000000e+06 },
+    HP{ .val = 1.000000e+22, .off = 0.000000000000000000e+00 },
+    HP{ .val = 1.000000e+21, .off = 0.000000000000000000e+00 },
+    HP{ .val = 1.000000e+20, .off = 0.000000000000000000e+00 },
+    HP{ .val = 1.000000e+19, .off = 0.000000000000000000e+00 },
+    HP{ .val = 1.000000e+18, .off = 0.000000000000000000e+00 },
+    HP{ .val = 1.000000e+17, .off = 0.000000000000000000e+00 },
+    HP{ .val = 1.000000e+16, .off = 0.000000000000000000e+00 },
+    HP{ .val = 1.000000e+15, .off = 0.000000000000000000e+00 },
+    HP{ .val = 1.000000e+14, .off = 0.000000000000000000e+00 },
+    HP{ .val = 1.000000e+13, .off = 0.000000000000000000e+00 },
+    HP{ .val = 1.000000e+12, .off = 0.000000000000000000e+00 },
+    HP{ .val = 1.000000e+11, .off = 0.000000000000000000e+00 },
+    HP{ .val = 1.000000e+10, .off = 0.000000000000000000e+00 },
+    HP{ .val = 1.000000e+09, .off = 0.000000000000000000e+00 },
+    HP{ .val = 1.000000e+08, .off = 0.000000000000000000e+00 },
+    HP{ .val = 1.000000e+07, .off = 0.000000000000000000e+00 },
+    HP{ .val = 1.000000e+06, .off = 0.000000000000000000e+00 },
+    HP{ .val = 1.000000e+05, .off = 0.000000000000000000e+00 },
+    HP{ .val = 1.000000e+04, .off = 0.000000000000000000e+00 },
+    HP{ .val = 1.000000e+03, .off = 0.000000000000000000e+00 },
+    HP{ .val = 1.000000e+02, .off = 0.000000000000000000e+00 },
+    HP{ .val = 1.000000e+01, .off = 0.000000000000000000e+00 },
+    HP{ .val = 1.000000e+00, .off = 0.000000000000000000e+00 },
+    HP{ .val = 1.000000e-01, .off = -5.551115123125783010e-18 },
+    HP{ .val = 1.000000e-02, .off = -2.081668171172168436e-19 },
+    HP{ .val = 1.000000e-03, .off = -2.081668171172168557e-20 },
+    HP{ .val = 1.000000e-04, .off = -4.792173602385929943e-21 },
+    HP{ .val = 1.000000e-05, .off = -8.180305391403130547e-22 },
+    HP{ .val = 1.000000e-06, .off = 4.525188817411374069e-23 },
+    HP{ .val = 1.000000e-07, .off = 4.525188817411373922e-24 },
+    HP{ .val = 1.000000e-08, .off = -2.092256083012847109e-25 },
+    HP{ .val = 1.000000e-09, .off = -6.228159145777985254e-26 },
+    HP{ .val = 1.000000e-10, .off = -3.643219731549774344e-27 },
+    HP{ .val = 1.000000e-11, .off = 6.050303071806019080e-28 },
+    HP{ .val = 1.000000e-12, .off = 2.011335237074438524e-29 },
+    HP{ .val = 1.000000e-13, .off = -3.037374556340037101e-30 },
+    HP{ .val = 1.000000e-14, .off = 1.180690645440101289e-32 },
+    HP{ .val = 1.000000e-15, .off = -7.770539987666107583e-32 },
+    HP{ .val = 1.000000e-16, .off = 2.090221327596539779e-33 },
+    HP{ .val = 1.000000e-17, .off = -7.154242405462192144e-34 },
+    HP{ .val = 1.000000e-18, .off = -7.154242405462192572e-35 },
+    HP{ .val = 1.000000e-19, .off = 2.475407316473986894e-36 },
+    HP{ .val = 1.000000e-20, .off = 5.484672854579042914e-37 },
+    HP{ .val = 1.000000e-21, .off = 9.246254777210362522e-38 },
+    HP{ .val = 1.000000e-22, .off = -4.859677432657087182e-39 },
+    HP{ .val = 1.000000e-23, .off = 3.956530198510069291e-40 },
+    HP{ .val = 1.000000e-24, .off = 7.629950044829717753e-41 },
+    HP{ .val = 1.000000e-25, .off = -3.849486974919183692e-42 },
+    HP{ .val = 1.000000e-26, .off = -3.849486974919184170e-43 },
+    HP{ .val = 1.000000e-27, .off = -3.849486974919184070e-44 },
+    HP{ .val = 1.000000e-28, .off = 2.876745653839937870e-45 },
+    HP{ .val = 1.000000e-29, .off = 5.679342582489572168e-46 },
+    HP{ .val = 1.000000e-30, .off = -8.333642060758598930e-47 },
+    HP{ .val = 1.000000e-31, .off = -8.333642060758597958e-48 },
+    HP{ .val = 1.000000e-32, .off = -5.596730997624190224e-49 },
+    HP{ .val = 1.000000e-33, .off = -5.596730997624190604e-50 },
+    HP{ .val = 1.000000e-34, .off = 7.232539610818348498e-51 },
+    HP{ .val = 1.000000e-35, .off = -7.857545194582380514e-53 },
+    HP{ .val = 1.000000e-36, .off = 5.896157255772251528e-53 },
+    HP{ .val = 1.000000e-37, .off = -6.632427322784915796e-54 },
+    HP{ .val = 1.000000e-38, .off = 3.808059826012723592e-55 },
+    HP{ .val = 1.000000e-39, .off = 7.070712060011985131e-56 },
+    HP{ .val = 1.000000e-40, .off = 7.070712060011985584e-57 },
+    HP{ .val = 1.000000e-41, .off = -5.761291134237854167e-59 },
+    HP{ .val = 1.000000e-42, .off = -3.762312935688689794e-59 },
+    HP{ .val = 1.000000e-43, .off = -7.745042713519821150e-60 },
+    HP{ .val = 1.000000e-44, .off = 4.700987842202462817e-61 },
+    HP{ .val = 1.000000e-45, .off = 1.589480203271891964e-62 },
+    HP{ .val = 1.000000e-46, .off = -2.299904345391321765e-63 },
+    HP{ .val = 1.000000e-47, .off = 2.561826340437695261e-64 },
+    HP{ .val = 1.000000e-48, .off = 2.561826340437695345e-65 },
+    HP{ .val = 1.000000e-49, .off = 6.360053438741614633e-66 },
+    HP{ .val = 1.000000e-50, .off = -7.616223705782342295e-68 },
+    HP{ .val = 1.000000e-51, .off = -7.616223705782343324e-69 },
+    HP{ .val = 1.000000e-52, .off = -7.616223705782342295e-70 },
+    HP{ .val = 1.000000e-53, .off = -3.079876214757872338e-70 },
+    HP{ .val = 1.000000e-54, .off = -3.079876214757872821e-71 },
+    HP{ .val = 1.000000e-55, .off = 5.423954167728123147e-73 },
+    HP{ .val = 1.000000e-56, .off = -3.985444122640543680e-73 },
+    HP{ .val = 1.000000e-57, .off = 4.504255013759498850e-74 },
+    HP{ .val = 1.000000e-58, .off = -2.570494266573869991e-75 },
+    HP{ .val = 1.000000e-59, .off = -2.570494266573869930e-76 },
+    HP{ .val = 1.000000e-60, .off = 2.956653608686574324e-77 },
+    HP{ .val = 1.000000e-61, .off = -3.952281235388981376e-78 },
+    HP{ .val = 1.000000e-62, .off = -3.952281235388981376e-79 },
+    HP{ .val = 1.000000e-63, .off = -6.651083908855995172e-80 },
+    HP{ .val = 1.000000e-64, .off = 3.469426116645307030e-81 },
+    HP{ .val = 1.000000e-65, .off = 7.686305293937516319e-82 },
+    HP{ .val = 1.000000e-66, .off = 2.415206322322254927e-83 },
+    HP{ .val = 1.000000e-67, .off = 5.709643179581793251e-84 },
+    HP{ .val = 1.000000e-68, .off = -6.644495035141475923e-85 },
+    HP{ .val = 1.000000e-69, .off = 3.650620143794581913e-86 },
+    HP{ .val = 1.000000e-70, .off = 4.333966503770636492e-88 },
+    HP{ .val = 1.000000e-71, .off = 8.476455383920859113e-88 },
+    HP{ .val = 1.000000e-72, .off = 3.449543675455986564e-89 },
+    HP{ .val = 1.000000e-73, .off = 3.077238576654418974e-91 },
+    HP{ .val = 1.000000e-74, .off = 4.234998629903623140e-91 },
+    HP{ .val = 1.000000e-75, .off = 4.234998629903623412e-92 },
+    HP{ .val = 1.000000e-76, .off = 7.303182045714702338e-93 },
+    HP{ .val = 1.000000e-77, .off = 7.303182045714701699e-94 },
+    HP{ .val = 1.000000e-78, .off = 1.121271649074855759e-96 },
+    HP{ .val = 1.000000e-79, .off = 1.121271649074855863e-97 },
+    HP{ .val = 1.000000e-80, .off = 3.857468248661243988e-97 },
+    HP{ .val = 1.000000e-81, .off = 3.857468248661244248e-98 },
+    HP{ .val = 1.000000e-82, .off = 3.857468248661244410e-99 },
+    HP{ .val = 1.000000e-83, .off = -3.457651055545315679e-100 },
+    HP{ .val = 1.000000e-84, .off = -3.457651055545315933e-101 },
+    HP{ .val = 1.000000e-85, .off = 2.257285900866059216e-102 },
+    HP{ .val = 1.000000e-86, .off = -8.458220892405268345e-103 },
+    HP{ .val = 1.000000e-87, .off = -1.761029146610688867e-104 },
+    HP{ .val = 1.000000e-88, .off = 6.610460535632536565e-105 },
+    HP{ .val = 1.000000e-89, .off = -3.853901567171494935e-106 },
+    HP{ .val = 1.000000e-90, .off = 5.062493089968513723e-108 },
+    HP{ .val = 1.000000e-91, .off = -2.218844988608365240e-108 },
+    HP{ .val = 1.000000e-92, .off = 1.187522883398155383e-109 },
+    HP{ .val = 1.000000e-93, .off = 9.703442563414457296e-110 },
+    HP{ .val = 1.000000e-94, .off = 4.380992763404268896e-111 },
+    HP{ .val = 1.000000e-95, .off = 1.054461638397900823e-112 },
+    HP{ .val = 1.000000e-96, .off = 9.370789450913819736e-113 },
+    HP{ .val = 1.000000e-97, .off = -3.623472756142303998e-114 },
+    HP{ .val = 1.000000e-98, .off = 6.122223899149788839e-115 },
+    HP{ .val = 1.000000e-99, .off = -1.999189980260288281e-116 },
+    HP{ .val = 1.000000e-100, .off = -1.999189980260288281e-117 },
+    HP{ .val = 1.000000e-101, .off = -5.171617276904849634e-118 },
+    HP{ .val = 1.000000e-102, .off = 6.724985085512256320e-119 },
+    HP{ .val = 1.000000e-103, .off = 4.246526260008692213e-120 },
+    HP{ .val = 1.000000e-104, .off = 7.344599791888147003e-121 },
+    HP{ .val = 1.000000e-105, .off = 3.472007877038828407e-122 },
+    HP{ .val = 1.000000e-106, .off = 5.892377823819652194e-123 },
+    HP{ .val = 1.000000e-107, .off = -1.585470431324073925e-125 },
+    HP{ .val = 1.000000e-108, .off = -3.940375084977444795e-125 },
+    HP{ .val = 1.000000e-109, .off = 7.869099673288519908e-127 },
+    HP{ .val = 1.000000e-110, .off = -5.122196348054018581e-127 },
+    HP{ .val = 1.000000e-111, .off = -8.815387795168313713e-128 },
+    HP{ .val = 1.000000e-112, .off = 5.034080131510290214e-129 },
+    HP{ .val = 1.000000e-113, .off = 2.148774313452247863e-130 },
+    HP{ .val = 1.000000e-114, .off = -5.064490231692858416e-131 },
+    HP{ .val = 1.000000e-115, .off = -5.064490231692858166e-132 },
+    HP{ .val = 1.000000e-116, .off = 5.708726942017560559e-134 },
+    HP{ .val = 1.000000e-117, .off = -2.951229134482377772e-134 },
+    HP{ .val = 1.000000e-118, .off = 1.451398151372789513e-135 },
+    HP{ .val = 1.000000e-119, .off = -1.300243902286690040e-136 },
+    HP{ .val = 1.000000e-120, .off = 2.139308664787659449e-137 },
+    HP{ .val = 1.000000e-121, .off = 2.139308664787659329e-138 },
+    HP{ .val = 1.000000e-122, .off = -5.922142664292847471e-139 },
+    HP{ .val = 1.000000e-123, .off = -5.922142664292846912e-140 },
+    HP{ .val = 1.000000e-124, .off = 6.673875037395443799e-141 },
+    HP{ .val = 1.000000e-125, .off = -1.198636026159737932e-142 },
+    HP{ .val = 1.000000e-126, .off = 5.361789860136246995e-143 },
+    HP{ .val = 1.000000e-127, .off = -2.838742497733733936e-144 },
+    HP{ .val = 1.000000e-128, .off = -5.401408859568103261e-145 },
+    HP{ .val = 1.000000e-129, .off = 7.411922949603743011e-146 },
+    HP{ .val = 1.000000e-130, .off = -8.604741811861064385e-147 },
+    HP{ .val = 1.000000e-131, .off = 1.405673664054439890e-148 },
+    HP{ .val = 1.000000e-132, .off = 1.405673664054439933e-149 },
+    HP{ .val = 1.000000e-133, .off = -6.414963426504548053e-150 },
+    HP{ .val = 1.000000e-134, .off = -3.971014335704864578e-151 },
+    HP{ .val = 1.000000e-135, .off = -3.971014335704864748e-152 },
+    HP{ .val = 1.000000e-136, .off = -1.523438813303585576e-154 },
+    HP{ .val = 1.000000e-137, .off = 2.234325152653707766e-154 },
+    HP{ .val = 1.000000e-138, .off = -6.715683724786540160e-155 },
+    HP{ .val = 1.000000e-139, .off = -2.986513359186437306e-156 },
+    HP{ .val = 1.000000e-140, .off = 1.674949597813692102e-157 },
+    HP{ .val = 1.000000e-141, .off = -4.151879098436469092e-158 },
+    HP{ .val = 1.000000e-142, .off = -4.151879098436469295e-159 },
+    HP{ .val = 1.000000e-143, .off = 4.952540739454407825e-160 },
+    HP{ .val = 1.000000e-144, .off = 4.952540739454407667e-161 },
+    HP{ .val = 1.000000e-145, .off = 8.508954738630531443e-162 },
+    HP{ .val = 1.000000e-146, .off = -2.604839008794855481e-163 },
+    HP{ .val = 1.000000e-147, .off = 2.952057864917838382e-164 },
+    HP{ .val = 1.000000e-148, .off = 6.425118410988271757e-165 },
+    HP{ .val = 1.000000e-149, .off = 2.083792728400229858e-166 },
+    HP{ .val = 1.000000e-150, .off = -6.295358232172964237e-168 },
+    HP{ .val = 1.000000e-151, .off = 6.153785555826519421e-168 },
+    HP{ .val = 1.000000e-152, .off = -6.564942029880634994e-169 },
+    HP{ .val = 1.000000e-153, .off = -3.915207116191644540e-170 },
+    HP{ .val = 1.000000e-154, .off = 2.709130168030831503e-171 },
+    HP{ .val = 1.000000e-155, .off = -1.431080634608215966e-172 },
+    HP{ .val = 1.000000e-156, .off = -4.018712386257620994e-173 },
+    HP{ .val = 1.000000e-157, .off = 5.684906682427646782e-174 },
+    HP{ .val = 1.000000e-158, .off = -6.444617153428937489e-175 },
+    HP{ .val = 1.000000e-159, .off = 1.136335243981427681e-176 },
+    HP{ .val = 1.000000e-160, .off = 1.136335243981427725e-177 },
+    HP{ .val = 1.000000e-161, .off = -2.812077463003137395e-178 },
+    HP{ .val = 1.000000e-162, .off = 4.591196362592922204e-179 },
+    HP{ .val = 1.000000e-163, .off = 7.675893789924613703e-180 },
+    HP{ .val = 1.000000e-164, .off = 3.820022005759999543e-181 },
+    HP{ .val = 1.000000e-165, .off = -9.998177244457686588e-183 },
+    HP{ .val = 1.000000e-166, .off = -4.012217555824373639e-183 },
+    HP{ .val = 1.000000e-167, .off = -2.467177666011174334e-185 },
+    HP{ .val = 1.000000e-168, .off = -4.953592503130188139e-185 },
+    HP{ .val = 1.000000e-169, .off = -2.011795792799518887e-186 },
+    HP{ .val = 1.000000e-170, .off = 1.665450095113817423e-187 },
+    HP{ .val = 1.000000e-171, .off = 1.665450095113817487e-188 },
+    HP{ .val = 1.000000e-172, .off = -4.080246604750770577e-189 },
+    HP{ .val = 1.000000e-173, .off = -4.080246604750770677e-190 },
+    HP{ .val = 1.000000e-174, .off = 4.085789420184387951e-192 },
+    HP{ .val = 1.000000e-175, .off = 4.085789420184388146e-193 },
+    HP{ .val = 1.000000e-176, .off = 4.085789420184388146e-194 },
+    HP{ .val = 1.000000e-177, .off = 4.792197640035244894e-194 },
+    HP{ .val = 1.000000e-178, .off = 4.792197640035244742e-195 },
+    HP{ .val = 1.000000e-179, .off = -2.057206575616014662e-196 },
+    HP{ .val = 1.000000e-180, .off = -2.057206575616014662e-197 },
+    HP{ .val = 1.000000e-181, .off = -4.732755097354788053e-198 },
+    HP{ .val = 1.000000e-182, .off = -4.732755097354787867e-199 },
+    HP{ .val = 1.000000e-183, .off = -5.522105321379546765e-201 },
+    HP{ .val = 1.000000e-184, .off = -5.777891238658996019e-201 },
+    HP{ .val = 1.000000e-185, .off = 7.542096444923057046e-203 },
+    HP{ .val = 1.000000e-186, .off = 8.919335748431433483e-203 },
+    HP{ .val = 1.000000e-187, .off = -1.287071881492476028e-204 },
+    HP{ .val = 1.000000e-188, .off = 5.091932887209967018e-205 },
+    HP{ .val = 1.000000e-189, .off = -6.868701054107114024e-206 },
+    HP{ .val = 1.000000e-190, .off = -1.885103578558330118e-207 },
+    HP{ .val = 1.000000e-191, .off = -1.885103578558330205e-208 },
+    HP{ .val = 1.000000e-192, .off = -9.671974634103305058e-209 },
+    HP{ .val = 1.000000e-193, .off = -4.805180224387695640e-210 },
+    HP{ .val = 1.000000e-194, .off = -1.763433718315439838e-211 },
+    HP{ .val = 1.000000e-195, .off = -9.367799983496079132e-212 },
+    HP{ .val = 1.000000e-196, .off = -4.615071067758179837e-213 },
+    HP{ .val = 1.000000e-197, .off = 1.325840076914194777e-214 },
+    HP{ .val = 1.000000e-198, .off = 8.751979007754662425e-215 },
+    HP{ .val = 1.000000e-199, .off = 1.789973760091724198e-216 },
+    HP{ .val = 1.000000e-200, .off = 1.789973760091724077e-217 },
+    HP{ .val = 1.000000e-201, .off = 5.416018159916171171e-218 },
+    HP{ .val = 1.000000e-202, .off = -3.649092839644947067e-219 },
+    HP{ .val = 1.000000e-203, .off = -3.649092839644947067e-220 },
+    HP{ .val = 1.000000e-204, .off = -1.080338554413850956e-222 },
+    HP{ .val = 1.000000e-205, .off = -1.080338554413850841e-223 },
+    HP{ .val = 1.000000e-206, .off = -2.874486186850417807e-223 },
+    HP{ .val = 1.000000e-207, .off = 7.499710055933455072e-224 },
+    HP{ .val = 1.000000e-208, .off = -9.790617015372999087e-225 },
+    HP{ .val = 1.000000e-209, .off = -4.387389805589732612e-226 },
+    HP{ .val = 1.000000e-210, .off = -4.387389805589732612e-227 },
+    HP{ .val = 1.000000e-211, .off = -8.608661063232909897e-228 },
+    HP{ .val = 1.000000e-212, .off = 4.582811616902018972e-229 },
+    HP{ .val = 1.000000e-213, .off = 4.582811616902019155e-230 },
+    HP{ .val = 1.000000e-214, .off = 8.705146829444184930e-231 },
+    HP{ .val = 1.000000e-215, .off = -4.177150709750081830e-232 },
+    HP{ .val = 1.000000e-216, .off = -4.177150709750082366e-233 },
+    HP{ .val = 1.000000e-217, .off = -8.202868690748290237e-234 },
+    HP{ .val = 1.000000e-218, .off = -3.170721214500530119e-235 },
+    HP{ .val = 1.000000e-219, .off = -3.170721214500529857e-236 },
+    HP{ .val = 1.000000e-220, .off = 7.606440013180328441e-238 },
+    HP{ .val = 1.000000e-221, .off = -1.696459258568569049e-238 },
+    HP{ .val = 1.000000e-222, .off = -4.767838333426821244e-239 },
+    HP{ .val = 1.000000e-223, .off = 2.910609353718809138e-240 },
+    HP{ .val = 1.000000e-224, .off = -1.888420450747209784e-241 },
+    HP{ .val = 1.000000e-225, .off = 4.110366804835314035e-242 },
+    HP{ .val = 1.000000e-226, .off = 7.859608839574391006e-243 },
+    HP{ .val = 1.000000e-227, .off = 5.516332567862468419e-244 },
+    HP{ .val = 1.000000e-228, .off = -3.270953451057244613e-245 },
+    HP{ .val = 1.000000e-229, .off = -6.932322625607124670e-246 },
+    HP{ .val = 1.000000e-230, .off = -4.643966891513449762e-247 },
+    HP{ .val = 1.000000e-231, .off = 1.076922443720738305e-248 },
+    HP{ .val = 1.000000e-232, .off = -2.498633390800628939e-249 },
+    HP{ .val = 1.000000e-233, .off = 4.205533798926934891e-250 },
+    HP{ .val = 1.000000e-234, .off = 4.205533798926934891e-251 },
+    HP{ .val = 1.000000e-235, .off = 4.205533798926934697e-252 },
+    HP{ .val = 1.000000e-236, .off = -4.523850562697497656e-253 },
+    HP{ .val = 1.000000e-237, .off = 9.320146633177728298e-255 },
+    HP{ .val = 1.000000e-238, .off = 9.320146633177728062e-256 },
+    HP{ .val = 1.000000e-239, .off = -7.592774752331086440e-256 },
+    HP{ .val = 1.000000e-240, .off = 3.063212017229987840e-257 },
+    HP{ .val = 1.000000e-241, .off = 3.063212017229987562e-258 },
+    HP{ .val = 1.000000e-242, .off = 3.063212017229987562e-259 },
+    HP{ .val = 1.000000e-243, .off = 4.616527473176159842e-261 },
+    HP{ .val = 1.000000e-244, .off = 6.965550922098544975e-261 },
+    HP{ .val = 1.000000e-245, .off = 6.965550922098544749e-262 },
+    HP{ .val = 1.000000e-246, .off = 4.424965697574744679e-263 },
+    HP{ .val = 1.000000e-247, .off = -1.926497363734756420e-264 },
+    HP{ .val = 1.000000e-248, .off = 2.043167049583681740e-265 },
+    HP{ .val = 1.000000e-249, .off = -5.399953725388390154e-266 },
+    HP{ .val = 1.000000e-250, .off = -5.399953725388389982e-267 },
+    HP{ .val = 1.000000e-251, .off = -1.523328321757102663e-268 },
+    HP{ .val = 1.000000e-252, .off = 5.745344310051561161e-269 },
+    HP{ .val = 1.000000e-253, .off = -6.369110076296211879e-270 },
+    HP{ .val = 1.000000e-254, .off = 8.773957906638504842e-271 },
+    HP{ .val = 1.000000e-255, .off = -6.904595826956931908e-273 },
+    HP{ .val = 1.000000e-256, .off = 2.267170882721243669e-273 },
+    HP{ .val = 1.000000e-257, .off = 2.267170882721243669e-274 },
+    HP{ .val = 1.000000e-258, .off = 4.577819683828225398e-275 },
+    HP{ .val = 1.000000e-259, .off = -6.975424321706684210e-276 },
+    HP{ .val = 1.000000e-260, .off = 3.855741933482293648e-277 },
+    HP{ .val = 1.000000e-261, .off = 1.599248963651256552e-278 },
+    HP{ .val = 1.000000e-262, .off = -1.221367248637539543e-279 },
+    HP{ .val = 1.000000e-263, .off = -1.221367248637539494e-280 },
+    HP{ .val = 1.000000e-264, .off = -1.221367248637539647e-281 },
+    HP{ .val = 1.000000e-265, .off = 1.533140771175737943e-282 },
+    HP{ .val = 1.000000e-266, .off = 1.533140771175737895e-283 },
+    HP{ .val = 1.000000e-267, .off = 1.533140771175738074e-284 },
+    HP{ .val = 1.000000e-268, .off = 4.223090009274641634e-285 },
+    HP{ .val = 1.000000e-269, .off = 4.223090009274641634e-286 },
+    HP{ .val = 1.000000e-270, .off = -4.183001359784432924e-287 },
+    HP{ .val = 1.000000e-271, .off = 3.697709298708449474e-288 },
+    HP{ .val = 1.000000e-272, .off = 6.981338739747150474e-289 },
+    HP{ .val = 1.000000e-273, .off = -9.436808465446354751e-290 },
+    HP{ .val = 1.000000e-274, .off = 3.389869038611071740e-291 },
+    HP{ .val = 1.000000e-275, .off = 6.596538414625427829e-292 },
+    HP{ .val = 1.000000e-276, .off = -9.436808465446354618e-293 },
+    HP{ .val = 1.000000e-277, .off = 3.089243784609725523e-294 },
+    HP{ .val = 1.000000e-278, .off = 6.220756847123745836e-295 },
+    HP{ .val = 1.000000e-279, .off = -5.522417137303829470e-296 },
+    HP{ .val = 1.000000e-280, .off = 4.263561183052483059e-297 },
+    HP{ .val = 1.000000e-281, .off = -1.852675267170212272e-298 },
+    HP{ .val = 1.000000e-282, .off = -1.852675267170212378e-299 },
+    HP{ .val = 1.000000e-283, .off = 5.314789322934508480e-300 },
+    HP{ .val = 1.000000e-284, .off = -3.644541414696392675e-301 },
+    HP{ .val = 1.000000e-285, .off = -7.377595888709267777e-302 },
+    HP{ .val = 1.000000e-286, .off = -5.044436842451220838e-303 },
+    HP{ .val = 1.000000e-287, .off = -2.127988034628661760e-304 },
+    HP{ .val = 1.000000e-288, .off = -5.773549044406860911e-305 },
+    HP{ .val = 1.000000e-289, .off = -1.216597782184112068e-306 },
+    HP{ .val = 1.000000e-290, .off = -6.912786859962547924e-307 },
+    HP{ .val = 1.000000e-291, .off = 3.767567660872018813e-308 },
 };
std/fmt/index.zig
@@ -107,7 +107,7 @@ pub fn format(context: var, comptime Errors: type, output: fn(@typeOf(context),
                 '}' => {
                     return output(context, args[next_arg]);
                 },
-                '0' ... '9' => {
+                '0'...'9' => {
                     width_start = i;
                     state = State.BufWidth;
                 },
@@ -127,7 +127,7 @@ pub fn format(context: var, comptime Errors: type, output: fn(@typeOf(context),
                     state = State.Start;
                     start_index = i + 1;
                 },
-                '0' ... '9' => {
+                '0'...'9' => {
                     width_start = i;
                     state = State.IntegerWidth;
                 },
@@ -141,7 +141,7 @@ pub fn format(context: var, comptime Errors: type, output: fn(@typeOf(context),
                     state = State.Start;
                     start_index = i + 1;
                 },
-                '0' ... '9' => {},
+                '0'...'9' => {},
                 else => @compileError("Unexpected character in format string: " ++ []u8{c}),
             },
             State.FloatScientific => switch (c) {
@@ -151,7 +151,7 @@ pub fn format(context: var, comptime Errors: type, output: fn(@typeOf(context),
                     state = State.Start;
                     start_index = i + 1;
                 },
-                '0' ... '9' => {
+                '0'...'9' => {
                     width_start = i;
                     state = State.FloatScientificWidth;
                 },
@@ -165,7 +165,7 @@ pub fn format(context: var, comptime Errors: type, output: fn(@typeOf(context),
                     state = State.Start;
                     start_index = i + 1;
                 },
-                '0' ... '9' => {},
+                '0'...'9' => {},
                 else => @compileError("Unexpected character in format string: " ++ []u8{c}),
             },
             State.Float => switch (c) {
@@ -175,7 +175,7 @@ pub fn format(context: var, comptime Errors: type, output: fn(@typeOf(context),
                     state = State.Start;
                     start_index = i + 1;
                 },
-                '0' ... '9' => {
+                '0'...'9' => {
                     width_start = i;
                     state = State.FloatWidth;
                 },
@@ -189,7 +189,7 @@ pub fn format(context: var, comptime Errors: type, output: fn(@typeOf(context),
                     state = State.Start;
                     start_index = i + 1;
                 },
-                '0' ... '9' => {},
+                '0'...'9' => {},
                 else => @compileError("Unexpected character in format string: " ++ []u8{c}),
             },
             State.BufWidth => switch (c) {
@@ -200,7 +200,7 @@ pub fn format(context: var, comptime Errors: type, output: fn(@typeOf(context),
                     state = State.Start;
                     start_index = i + 1;
                 },
-                '0' ... '9' => {},
+                '0'...'9' => {},
                 else => @compileError("Unexpected character in format string: " ++ []u8{c}),
             },
             State.Character => switch (c) {
@@ -223,7 +223,7 @@ pub fn format(context: var, comptime Errors: type, output: fn(@typeOf(context),
                     radix = 1024;
                     state = State.BytesBase;
                 },
-                '0' ... '9' => {
+                '0'...'9' => {
                     width_start = i;
                     state = State.BytesWidth;
                 },
@@ -236,7 +236,7 @@ pub fn format(context: var, comptime Errors: type, output: fn(@typeOf(context),
                     state = State.Start;
                     start_index = i + 1;
                 },
-                '0' ... '9' => {
+                '0'...'9' => {
                     width_start = i;
                     state = State.BytesWidth;
                 },
@@ -250,7 +250,7 @@ pub fn format(context: var, comptime Errors: type, output: fn(@typeOf(context),
                     state = State.Start;
                     start_index = i + 1;
                 },
-                '0' ... '9' => {},
+                '0'...'9' => {},
                 else => @compileError("Unexpected character in format string: " ++ []u8{c}),
             },
         }
@@ -562,9 +562,14 @@ pub fn formatFloatDecimal(value: var, maybe_precision: ?usize, context: var, com
     }
 }
 
-pub fn formatBytes(value: var, width: ?usize, comptime radix: usize,
-    context: var, comptime Errors: type, output: fn(@typeOf(context), []const u8)Errors!void) Errors!void
-{
+pub fn formatBytes(
+    value: var,
+    width: ?usize,
+    comptime radix: usize,
+    context: var,
+    comptime Errors: type,
+    output: fn(@typeOf(context), []const u8) Errors!void,
+) Errors!void {
     if (value == 0) {
         return output(context, "0B");
     }
@@ -585,16 +590,22 @@ pub fn formatBytes(value: var, width: ?usize, comptime radix: usize,
     }
 
     const buf = switch (radix) {
-        1000 => []u8 { suffix, 'B' },
-        1024 => []u8 { suffix, 'i', 'B' },
+        1000 => []u8{ suffix, 'B' },
+        1024 => []u8{ suffix, 'i', 'B' },
         else => unreachable,
     };
     return output(context, buf);
 }
 
-pub fn formatInt(value: var, base: u8, uppercase: bool, width: usize,
-    context: var, comptime Errors: type, output: fn(@typeOf(context), []const u8)Errors!void) Errors!void
-{
+pub fn formatInt(
+    value: var,
+    base: u8,
+    uppercase: bool,
+    width: usize,
+    context: var,
+    comptime Errors: type,
+    output: fn(@typeOf(context), []const u8) Errors!void,
+) Errors!void {
     if (@typeOf(value).is_signed) {
         return formatIntSigned(value, base, uppercase, width, context, Errors, output);
     } else {
@@ -717,9 +728,9 @@ pub fn parseUnsigned(comptime T: type, buf: []const u8, radix: u8) ParseUnsigned
 
 pub fn charToDigit(c: u8, radix: u8) (error{InvalidCharacter}!u8) {
     const value = switch (c) {
-        '0' ... '9' => c - '0',
-        'A' ... 'Z' => c - 'A' + 10,
-        'a' ... 'z' => c - 'a' + 10,
+        '0'...'9' => c - '0',
+        'A'...'Z' => c - 'A' + 10,
+        'a'...'z' => c - 'a' + 10,
         else => return error.InvalidCharacter,
     };
 
@@ -730,8 +741,8 @@ pub fn charToDigit(c: u8, radix: u8) (error{InvalidCharacter}!u8) {
 
 fn digitToChar(digit: u8, uppercase: bool) u8 {
     return switch (digit) {
-        0 ... 9 => digit + '0',
-        10 ... 35 => digit + ((if (uppercase) u8('A') else u8('a')) - 10),
+        0...9 => digit + '0',
+        10...35 => digit + ((if (uppercase) u8('A') else u8('a')) - 10),
         else => unreachable,
     };
 }
@@ -754,8 +765,7 @@ pub fn bufPrint(buf: []u8, comptime fmt: []const u8, args: ...) ![]u8 {
 
 pub fn allocPrint(allocator: &mem.Allocator, comptime fmt: []const u8, args: ...) ![]u8 {
     var size: usize = 0;
-    format(&size, error{}, countSize, fmt, args) catch |err| switch (err) {
-    };
+    format(&size, error{}, countSize, fmt, args) catch |err| switch (err) {};
     const buf = try allocator.alloc(u8, size);
     return bufPrint(buf, fmt, args);
 }
@@ -1043,8 +1053,7 @@ test "fmt.format" {
 fn testFmt(expected: []const u8, comptime template: []const u8, args: ...) !void {
     var buf: [100]u8 = undefined;
     const result = try bufPrint(buf[0..], template, args);
-    if (mem.eql(u8, result, expected))
-        return;
+    if (mem.eql(u8, result, expected)) return;
 
     std.debug.warn("\n====== expected this output: =========\n");
     std.debug.warn("{}", expected);
@@ -1082,10 +1091,7 @@ test "fmt.trim" {
 
 pub fn isWhiteSpace(byte: u8) bool {
     return switch (byte) {
-        ' ',
-        '\t',
-        '\n',
-        '\r' => true,
+        ' ', '\t', '\n', '\r' => true,
         else => false,
     };
 }
std/hash/adler.zig
@@ -13,9 +13,7 @@ pub const Adler32 = struct {
     adler: u32,
 
     pub fn init() Adler32 {
-        return Adler32 {
-            .adler = 1,
-        };
+        return Adler32{ .adler = 1 };
     }
 
     // This fast variant is taken from zlib. It reduces the required modulos and unrolls longer
@@ -33,8 +31,7 @@ pub const Adler32 = struct {
             if (s2 >= base) {
                 s2 -= base;
             }
-        }
-        else if (input.len < 16) {
+        } else if (input.len < 16) {
             for (input) |b| {
                 s1 +%= b;
                 s2 +%= s1;
@@ -44,8 +41,7 @@ pub const Adler32 = struct {
             }
 
             s2 %= base;
-        }
-        else {
+        } else {
             var i: usize = 0;
             while (i + nmax <= input.len) : (i += nmax) {
                 const n = nmax / 16; // note: 16 | nmax
@@ -98,15 +94,14 @@ test "adler32 sanity" {
 }
 
 test "adler32 long" {
-    const long1 = []u8 {1} ** 1024;
+    const long1 = []u8{1} ** 1024;
     debug.assert(Adler32.hash(long1[0..]) == 0x06780401);
 
-    const long2 = []u8 {1} ** 1025;
+    const long2 = []u8{1} ** 1025;
     debug.assert(Adler32.hash(long2[0..]) == 0x0a7a0402);
 }
 
 test "adler32 very long" {
-    const long = []u8 {1} ** 5553;
+    const long = []u8{1} ** 5553;
     debug.assert(Adler32.hash(long[0..]) == 0x707f15b2);
 }
-
std/hash/crc.zig
@@ -69,7 +69,6 @@ pub fn Crc32WithPoly(comptime poly: u32) type {
                 self.crc ^= (u32(p[2]) << 16);
                 self.crc ^= (u32(p[3]) << 24);
 
-
                 self.crc =
                     lookup_tables[0][p[7]] ^
                     lookup_tables[1][p[6]] ^
@@ -77,8 +76,8 @@ pub fn Crc32WithPoly(comptime poly: u32) type {
                     lookup_tables[3][p[4]] ^
                     lookup_tables[4][@truncate(u8, self.crc >> 24)] ^
                     lookup_tables[5][@truncate(u8, self.crc >> 16)] ^
-                    lookup_tables[6][@truncate(u8, self.crc >>  8)] ^
-                    lookup_tables[7][@truncate(u8, self.crc >>  0)];
+                    lookup_tables[6][@truncate(u8, self.crc >> 8)] ^
+                    lookup_tables[7][@truncate(u8, self.crc >> 0)];
             }
 
             while (i < input.len) : (i += 1) {
std/hash/fnv.zig
@@ -7,7 +7,7 @@
 const std = @import("../index.zig");
 const debug = std.debug;
 
-pub const Fnv1a_32 = Fnv1a(u32, 0x01000193 , 0x811c9dc5);
+pub const Fnv1a_32 = Fnv1a(u32, 0x01000193, 0x811c9dc5);
 pub const Fnv1a_64 = Fnv1a(u64, 0x100000001b3, 0xcbf29ce484222325);
 pub const Fnv1a_128 = Fnv1a(u128, 0x1000000000000000000013b, 0x6c62272e07bb014262b821756295c58d);
 
@@ -18,9 +18,7 @@ fn Fnv1a(comptime T: type, comptime prime: T, comptime offset: T) type {
         value: T,
 
         pub fn init() Self {
-            return Self {
-                .value = offset,
-            };
+            return Self{ .value = offset };
         }
 
         pub fn update(self: &Self, input: []const u8) void {
std/hash/siphash.zig
@@ -45,7 +45,7 @@ fn SipHash(comptime T: type, comptime c_rounds: usize, comptime d_rounds: usize)
             const k0 = mem.readInt(key[0..8], u64, Endian.Little);
             const k1 = mem.readInt(key[8..16], u64, Endian.Little);
 
-            var d = Self {
+            var d = Self{
                 .v0 = k0 ^ 0x736f6d6570736575,
                 .v1 = k1 ^ 0x646f72616e646f6d,
                 .v2 = k0 ^ 0x6c7967656e657261,
@@ -162,7 +162,7 @@ fn SipHash(comptime T: type, comptime c_rounds: usize, comptime d_rounds: usize)
 const test_key = "\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f";
 
 test "siphash64-2-4 sanity" {
-    const vectors = [][]const u8 {
+    const vectors = [][]const u8{
         "\x31\x0e\x0e\xdd\x47\xdb\x6f\x72", // ""
         "\xfd\x67\xdc\x93\xc5\x39\xf8\x74", // "\x00"
         "\x5a\x4f\xa9\xd9\x09\x80\x6c\x0d", // "\x00\x01" ... etc
@@ -241,7 +241,7 @@ test "siphash64-2-4 sanity" {
 }
 
 test "siphash128-2-4 sanity" {
-    const vectors = [][]const u8 {
+    const vectors = [][]const u8{
         "\xa3\x81\x7f\x04\xba\x25\xa8\xe6\x6d\xf6\x72\x14\xc7\x55\x02\x93",
         "\xda\x87\xc1\xd8\x6b\x99\xaf\x44\x34\x76\x59\x11\x9b\x22\xfc\x45",
         "\x81\x77\x22\x8d\xa4\xa4\x5d\xc7\xfc\xa3\x8b\xde\xf6\x0a\xff\xe4",
std/math/complex/index.zig
@@ -31,28 +31,28 @@ pub fn Complex(comptime T: type) type {
         im: T,
 
         pub fn new(re: T, im: T) Self {
-            return Self {
+            return Self{
                 .re = re,
                 .im = im,
             };
         }
 
         pub fn add(self: &const Self, other: &const Self) Self {
-            return Self {
+            return Self{
                 .re = self.re + other.re,
                 .im = self.im + other.im,
             };
         }
 
         pub fn sub(self: &const Self, other: &const Self) Self {
-            return Self {
+            return Self{
                 .re = self.re - other.re,
                 .im = self.im - other.im,
             };
         }
 
         pub fn mul(self: &const Self, other: &const Self) Self {
-            return Self {
+            return Self{
                 .re = self.re * other.re - self.im * other.im,
                 .im = self.im * other.re + self.re * other.im,
             };
@@ -63,14 +63,14 @@ pub fn Complex(comptime T: type) type {
             const im_num = self.im * other.re - self.re * other.im;
             const den = other.re * other.re + other.im * other.im;
 
-            return Self {
+            return Self{
                 .re = re_num / den,
                 .im = im_num / den,
             };
         }
 
         pub fn conjugate(self: &const Self) Self {
-            return Self {
+            return Self{
                 .re = self.re,
                 .im = -self.im,
             };
@@ -78,7 +78,7 @@ pub fn Complex(comptime T: type) type {
 
         pub fn reciprocal(self: &const Self) Self {
             const m = self.re * self.re + self.im * self.im;
-            return Self {
+            return Self{
                 .re = self.re / m,
                 .im = -self.im / m,
             };
@@ -121,8 +121,8 @@ test "complex.div" {
     const b = Complex(f32).new(2, 7);
     const c = a.div(b);
 
-    debug.assert(math.approxEq(f32, c.re, f32(31)/53, epsilon) and
-                 math.approxEq(f32, c.im, f32(-29)/53, epsilon));
+    debug.assert(math.approxEq(f32, c.re, f32(31) / 53, epsilon) and
+        math.approxEq(f32, c.im, f32(-29) / 53, epsilon));
 }
 
 test "complex.conjugate" {
@@ -136,8 +136,8 @@ test "complex.reciprocal" {
     const a = Complex(f32).new(5, 3);
     const c = a.reciprocal();
 
-    debug.assert(math.approxEq(f32, c.re, f32(5)/34, epsilon) and
-                 math.approxEq(f32, c.im, f32(-3)/34, epsilon));
+    debug.assert(math.approxEq(f32, c.re, f32(5) / 34, epsilon) and
+        math.approxEq(f32, c.im, f32(-3) / 34, epsilon));
 }
 
 test "complex.magnitude" {
std/math/complex/tanh.zig
@@ -98,7 +98,7 @@ test "complex.ctanh32" {
     const a = Complex(f32).new(5, 3);
     const c = tanh(a);
 
-    debug.assert(math.approxEq(f32, c.re,  0.999913, epsilon));
+    debug.assert(math.approxEq(f32, c.re, 0.999913, epsilon));
     debug.assert(math.approxEq(f32, c.im, -0.000025, epsilon));
 }
 
@@ -106,6 +106,6 @@ test "complex.ctanh64" {
     const a = Complex(f64).new(5, 3);
     const c = tanh(a);
 
-    debug.assert(math.approxEq(f64, c.re,  0.999913, epsilon));
+    debug.assert(math.approxEq(f64, c.re, 0.999913, epsilon));
     debug.assert(math.approxEq(f64, c.im, -0.000025, epsilon));
 }
std/math/atan.zig
@@ -17,25 +17,25 @@ pub fn atan(x: var) @typeOf(x) {
 }
 
 fn atan32(x_: f32) f32 {
-    const atanhi = []const f32 {
+    const atanhi = []const f32{
         4.6364760399e-01, // atan(0.5)hi
         7.8539812565e-01, // atan(1.0)hi
         9.8279368877e-01, // atan(1.5)hi
         1.5707962513e+00, // atan(inf)hi
     };
 
-    const atanlo = []const f32 {
+    const atanlo = []const f32{
         5.0121582440e-09, // atan(0.5)lo
         3.7748947079e-08, // atan(1.0)lo
         3.4473217170e-08, // atan(1.5)lo
         7.5497894159e-08, // atan(inf)lo
     };
 
-    const aT = []const f32 {
+    const aT = []const f32{
         3.3333328366e-01,
-       -1.9999158382e-01,
+        -1.9999158382e-01,
         1.4253635705e-01,
-       -1.0648017377e-01,
+        -1.0648017377e-01,
         6.1687607318e-02,
     };
 
@@ -80,8 +80,7 @@ fn atan32(x_: f32) f32 {
                 id = 1;
                 x = (x - 1.0) / (x + 1.0);
             }
-        }
-        else {
+        } else {
             // |x| < 2.4375
             if (ix < 0x401C0000) {
                 id = 2;
@@ -109,31 +108,31 @@ fn atan32(x_: f32) f32 {
 }
 
 fn atan64(x_: f64) f64 {
-    const atanhi = []const f64 {
+    const atanhi = []const f64{
         4.63647609000806093515e-01, // atan(0.5)hi
         7.85398163397448278999e-01, // atan(1.0)hi
         9.82793723247329054082e-01, // atan(1.5)hi
         1.57079632679489655800e+00, // atan(inf)hi
     };
 
-    const atanlo = []const f64 {
+    const atanlo = []const f64{
         2.26987774529616870924e-17, // atan(0.5)lo
         3.06161699786838301793e-17, // atan(1.0)lo
         1.39033110312309984516e-17, // atan(1.5)lo
         6.12323399573676603587e-17, // atan(inf)lo
     };
 
-    const aT = []const f64 {
+    const aT = []const f64{
         3.33333333333329318027e-01,
-       -1.99999999998764832476e-01,
+        -1.99999999998764832476e-01,
         1.42857142725034663711e-01,
-       -1.11111104054623557880e-01,
+        -1.11111104054623557880e-01,
         9.09088713343650656196e-02,
-       -7.69187620504482999495e-02,
+        -7.69187620504482999495e-02,
         6.66107313738753120669e-02,
-       -5.83357013379057348645e-02,
+        -5.83357013379057348645e-02,
         4.97687799461593236017e-02,
-       -3.65315727442169155270e-02,
+        -3.65315727442169155270e-02,
         1.62858201153657823623e-02,
     };
 
@@ -179,8 +178,7 @@ fn atan64(x_: f64) f64 {
                 id = 1;
                 x = (x - 1.0) / (x + 1.0);
             }
-        }
-        else {
+        } else {
             // |x| < 2.4375
             if (ix < 0x40038000) {
                 id = 2;
std/math/atan2.zig
@@ -53,8 +53,7 @@ fn atan2_32(y: f32, x: f32) f32 {
 
     if (iy == 0) {
         switch (m) {
-            0,
-            1 => return y, // atan(+-0, +...)
+            0, 1 => return y, // atan(+-0, +...)
             2 => return pi, // atan(+0, -...)
             3 => return -pi, // atan(-0, -...)
             else => unreachable,
@@ -144,8 +143,7 @@ fn atan2_64(y: f64, x: f64) f64 {
 
     if (iy | ly == 0) {
         switch (m) {
-            0,
-            1 => return y, // atan(+-0, +...)
+            0, 1 => return y, // atan(+-0, +...)
             2 => return pi, // atan(+0, -...)
             3 => return -pi, // atan(-0, -...)
             else => unreachable,
std/math/exp.zig
@@ -20,10 +20,10 @@ pub fn exp(x: var) @typeOf(x) {
 fn exp32(x_: f32) f32 {
     @setFloatMode(this, builtin.FloatMode.Strict);
 
-    const half = []f32 { 0.5, -0.5 };
+    const half = []f32{ 0.5, -0.5 };
     const ln2hi = 6.9314575195e-1;
     const ln2lo = 1.4286067653e-6;
-    const invln2  = 1.4426950216e+0;
+    const invln2 = 1.4426950216e+0;
     const P1 = 1.6666625440e-1;
     const P2 = -2.7667332906e-3;
 
@@ -47,7 +47,7 @@ fn exp32(x_: f32) f32 {
             return x * 0x1.0p127;
         }
         if (sign != 0) {
-            math.forceEval(-0x1.0p-149 / x);   // overflow
+            math.forceEval(-0x1.0p-149 / x); // overflow
             // x <= -103.972084
             if (hx >= 0x42CFF1B5) {
                 return 0;
@@ -64,8 +64,7 @@ fn exp32(x_: f32) f32 {
         // |x| > 1.5 * ln2
         if (hx > 0x3F851592) {
             k = i32(invln2 * x + half[usize(sign)]);
-        }
-        else {
+        } else {
             k = 1 - sign - sign;
         }
 
@@ -79,8 +78,7 @@ fn exp32(x_: f32) f32 {
         k = 0;
         hi = x;
         lo = 0;
-    }
-    else {
+    } else {
         math.forceEval(0x1.0p127 + x); // inexact
         return 1 + x;
     }
@@ -99,15 +97,15 @@ fn exp32(x_: f32) f32 {
 fn exp64(x_: f64) f64 {
     @setFloatMode(this, builtin.FloatMode.Strict);
 
-    const half = []const f64 { 0.5, -0.5 };
+    const half = []const f64{ 0.5, -0.5 };
     const ln2hi: f64 = 6.93147180369123816490e-01;
     const ln2lo: f64 = 1.90821492927058770002e-10;
     const invln2: f64 = 1.44269504088896338700e+00;
-    const P1: f64   =  1.66666666666666019037e-01;
-    const P2: f64   = -2.77777777770155933842e-03;
-    const P3: f64   =  6.61375632143793436117e-05;
-    const P4: f64   = -1.65339022054652515390e-06;
-    const P5: f64   =  4.13813679705723846039e-08;
+    const P1: f64 = 1.66666666666666019037e-01;
+    const P2: f64 = -2.77777777770155933842e-03;
+    const P3: f64 = 6.61375632143793436117e-05;
+    const P4: f64 = -1.65339022054652515390e-06;
+    const P5: f64 = 4.13813679705723846039e-08;
 
     var x = x_;
     var ux = @bitCast(u64, x);
@@ -151,8 +149,7 @@ fn exp64(x_: f64) f64 {
         // |x| >= 1.5 * ln2
         if (hx > 0x3FF0A2B2) {
             k = i32(invln2 * x + half[usize(sign)]);
-        }
-        else {
+        } else {
             k = 1 - sign - sign;
         }
 
@@ -166,8 +163,7 @@ fn exp64(x_: f64) f64 {
         k = 0;
         hi = x;
         lo = 0;
-    }
-    else {
+    } else {
         // inexact if x != 0
         // math.forceEval(0x1.0p1023 + x);
         return 1 + x;
std/math/exp2.zig
@@ -16,7 +16,7 @@ pub fn exp2(x: var) @typeOf(x) {
     };
 }
 
-const exp2ft = []const f64 {
+const exp2ft = []const f64{
     0x1.6a09e667f3bcdp-1,
     0x1.7a11473eb0187p-1,
     0x1.8ace5422aa0dbp-1,
@@ -92,195 +92,195 @@ fn exp2_32(x: f32) f32 {
     return f32(r * uk);
 }
 
-const exp2dt = []f64 {
+const exp2dt = []f64{
     //  exp2(z + eps)          eps
-    0x1.6a09e667f3d5dp-1,  0x1.9880p-44,
-    0x1.6b052fa751744p-1,  0x1.8000p-50,
+    0x1.6a09e667f3d5dp-1, 0x1.9880p-44,
+    0x1.6b052fa751744p-1, 0x1.8000p-50,
     0x1.6c012750bd9fep-1, -0x1.8780p-45,
-    0x1.6cfdcddd476bfp-1,  0x1.ec00p-46,
+    0x1.6cfdcddd476bfp-1, 0x1.ec00p-46,
     0x1.6dfb23c651a29p-1, -0x1.8000p-50,
     0x1.6ef9298593ae3p-1, -0x1.c000p-52,
     0x1.6ff7df9519386p-1, -0x1.fd80p-45,
     0x1.70f7466f42da3p-1, -0x1.c880p-45,
-    0x1.71f75e8ec5fc3p-1,  0x1.3c00p-46,
+    0x1.71f75e8ec5fc3p-1, 0x1.3c00p-46,
     0x1.72f8286eacf05p-1, -0x1.8300p-44,
     0x1.73f9a48a58152p-1, -0x1.0c00p-47,
-    0x1.74fbd35d7ccfcp-1,  0x1.f880p-45,
-    0x1.75feb564267f1p-1,  0x1.3e00p-47,
+    0x1.74fbd35d7ccfcp-1, 0x1.f880p-45,
+    0x1.75feb564267f1p-1, 0x1.3e00p-47,
     0x1.77024b1ab6d48p-1, -0x1.7d00p-45,
     0x1.780694fde5d38p-1, -0x1.d000p-50,
-    0x1.790b938ac1d00p-1,  0x1.3000p-49,
+    0x1.790b938ac1d00p-1, 0x1.3000p-49,
     0x1.7a11473eb0178p-1, -0x1.d000p-49,
-    0x1.7b17b0976d060p-1,  0x1.0400p-45,
-    0x1.7c1ed0130c133p-1,  0x1.0000p-53,
+    0x1.7b17b0976d060p-1, 0x1.0400p-45,
+    0x1.7c1ed0130c133p-1, 0x1.0000p-53,
     0x1.7d26a62ff8636p-1, -0x1.6900p-45,
     0x1.7e2f336cf4e3bp-1, -0x1.2e00p-47,
     0x1.7f3878491c3e8p-1, -0x1.4580p-45,
-    0x1.80427543e1b4ep-1,  0x1.3000p-44,
-    0x1.814d2add1071ap-1,  0x1.f000p-47,
+    0x1.80427543e1b4ep-1, 0x1.3000p-44,
+    0x1.814d2add1071ap-1, 0x1.f000p-47,
     0x1.82589994ccd7ep-1, -0x1.1c00p-45,
-    0x1.8364c1eb942d0p-1,  0x1.9d00p-45,
-    0x1.8471a4623cab5p-1,  0x1.7100p-43,
-    0x1.857f4179f5bbcp-1,  0x1.2600p-45,
+    0x1.8364c1eb942d0p-1, 0x1.9d00p-45,
+    0x1.8471a4623cab5p-1, 0x1.7100p-43,
+    0x1.857f4179f5bbcp-1, 0x1.2600p-45,
     0x1.868d99b4491afp-1, -0x1.2c40p-44,
     0x1.879cad931a395p-1, -0x1.3000p-45,
     0x1.88ac7d98a65b8p-1, -0x1.a800p-45,
     0x1.89bd0a4785800p-1, -0x1.d000p-49,
-    0x1.8ace5422aa223p-1,  0x1.3280p-44,
-    0x1.8be05bad619fap-1,  0x1.2b40p-43,
+    0x1.8ace5422aa223p-1, 0x1.3280p-44,
+    0x1.8be05bad619fap-1, 0x1.2b40p-43,
     0x1.8cf3216b54383p-1, -0x1.ed00p-45,
     0x1.8e06a5e08664cp-1, -0x1.0500p-45,
-    0x1.8f1ae99157807p-1,  0x1.8280p-45,
+    0x1.8f1ae99157807p-1, 0x1.8280p-45,
     0x1.902fed0282c0ep-1, -0x1.cb00p-46,
     0x1.9145b0b91ff96p-1, -0x1.5e00p-47,
-    0x1.925c353aa2ff9p-1,  0x1.5400p-48,
-    0x1.93737b0cdc64ap-1,  0x1.7200p-46,
+    0x1.925c353aa2ff9p-1, 0x1.5400p-48,
+    0x1.93737b0cdc64ap-1, 0x1.7200p-46,
     0x1.948b82b5f98aep-1, -0x1.9000p-47,
-    0x1.95a44cbc852cbp-1,  0x1.5680p-45,
+    0x1.95a44cbc852cbp-1, 0x1.5680p-45,
     0x1.96bdd9a766f21p-1, -0x1.6d00p-44,
     0x1.97d829fde4e2ap-1, -0x1.1000p-47,
-    0x1.98f33e47a23a3p-1,  0x1.d000p-45,
+    0x1.98f33e47a23a3p-1, 0x1.d000p-45,
     0x1.9a0f170ca0604p-1, -0x1.8a40p-44,
-    0x1.9b2bb4d53ff89p-1,  0x1.55c0p-44,
-    0x1.9c49182a3f15bp-1,  0x1.6b80p-45,
+    0x1.9b2bb4d53ff89p-1, 0x1.55c0p-44,
+    0x1.9c49182a3f15bp-1, 0x1.6b80p-45,
     0x1.9d674194bb8c5p-1, -0x1.c000p-49,
-    0x1.9e86319e3238ep-1,  0x1.7d00p-46,
-    0x1.9fa5e8d07f302p-1,  0x1.6400p-46,
+    0x1.9e86319e3238ep-1, 0x1.7d00p-46,
+    0x1.9fa5e8d07f302p-1, 0x1.6400p-46,
     0x1.a0c667b5de54dp-1, -0x1.5000p-48,
-    0x1.a1e7aed8eb8f6p-1,  0x1.9e00p-47,
-    0x1.a309bec4a2e27p-1,  0x1.ad80p-45,
+    0x1.a1e7aed8eb8f6p-1, 0x1.9e00p-47,
+    0x1.a309bec4a2e27p-1, 0x1.ad80p-45,
     0x1.a42c980460a5dp-1, -0x1.af00p-46,
-    0x1.a5503b23e259bp-1,  0x1.b600p-47,
-    0x1.a674a8af46213p-1,  0x1.8880p-44,
-    0x1.a799e1330b3a7p-1,  0x1.1200p-46,
-    0x1.a8bfe53c12e8dp-1,  0x1.6c00p-47,
+    0x1.a5503b23e259bp-1, 0x1.b600p-47,
+    0x1.a674a8af46213p-1, 0x1.8880p-44,
+    0x1.a799e1330b3a7p-1, 0x1.1200p-46,
+    0x1.a8bfe53c12e8dp-1, 0x1.6c00p-47,
     0x1.a9e6b5579fcd2p-1, -0x1.9b80p-45,
-    0x1.ab0e521356fb8p-1,  0x1.b700p-45,
-    0x1.ac36bbfd3f381p-1,  0x1.9000p-50,
-    0x1.ad5ff3a3c2780p-1,  0x1.4000p-49,
+    0x1.ab0e521356fb8p-1, 0x1.b700p-45,
+    0x1.ac36bbfd3f381p-1, 0x1.9000p-50,
+    0x1.ad5ff3a3c2780p-1, 0x1.4000p-49,
     0x1.ae89f995ad2a3p-1, -0x1.c900p-45,
-    0x1.afb4ce622f367p-1,  0x1.6500p-46,
-    0x1.b0e07298db790p-1,  0x1.fd40p-45,
-    0x1.b20ce6c9a89a9p-1,  0x1.2700p-46,
-    0x1.b33a2b84f1a4bp-1,  0x1.d470p-43,
+    0x1.afb4ce622f367p-1, 0x1.6500p-46,
+    0x1.b0e07298db790p-1, 0x1.fd40p-45,
+    0x1.b20ce6c9a89a9p-1, 0x1.2700p-46,
+    0x1.b33a2b84f1a4bp-1, 0x1.d470p-43,
     0x1.b468415b747e7p-1, -0x1.8380p-44,
-    0x1.b59728de5593ap-1,  0x1.8000p-54,
-    0x1.b6c6e29f1c56ap-1,  0x1.ad00p-47,
-    0x1.b7f76f2fb5e50p-1,  0x1.e800p-50,
+    0x1.b59728de5593ap-1, 0x1.8000p-54,
+    0x1.b6c6e29f1c56ap-1, 0x1.ad00p-47,
+    0x1.b7f76f2fb5e50p-1, 0x1.e800p-50,
     0x1.b928cf22749b2p-1, -0x1.4c00p-47,
     0x1.ba5b030a10603p-1, -0x1.d700p-47,
-    0x1.bb8e0b79a6f66p-1,  0x1.d900p-47,
-    0x1.bcc1e904bc1ffp-1,  0x1.2a00p-47,
+    0x1.bb8e0b79a6f66p-1, 0x1.d900p-47,
+    0x1.bcc1e904bc1ffp-1, 0x1.2a00p-47,
     0x1.bdf69c3f3a16fp-1, -0x1.f780p-46,
     0x1.bf2c25bd71db8p-1, -0x1.0a00p-46,
     0x1.c06286141b2e9p-1, -0x1.1400p-46,
-    0x1.c199bdd8552e0p-1,  0x1.be00p-47,
+    0x1.c199bdd8552e0p-1, 0x1.be00p-47,
     0x1.c2d1cd9fa64eep-1, -0x1.9400p-47,
     0x1.c40ab5fffd02fp-1, -0x1.ed00p-47,
-    0x1.c544778fafd15p-1,  0x1.9660p-44,
+    0x1.c544778fafd15p-1, 0x1.9660p-44,
     0x1.c67f12e57d0cbp-1, -0x1.a100p-46,
     0x1.c7ba88988c1b6p-1, -0x1.8458p-42,
     0x1.c8f6d9406e733p-1, -0x1.a480p-46,
-    0x1.ca3405751c4dfp-1,  0x1.b000p-51,
-    0x1.cb720dcef9094p-1,  0x1.1400p-47,
-    0x1.ccb0f2e6d1689p-1,  0x1.0200p-48,
-    0x1.cdf0b555dc412p-1,  0x1.3600p-48,
+    0x1.ca3405751c4dfp-1, 0x1.b000p-51,
+    0x1.cb720dcef9094p-1, 0x1.1400p-47,
+    0x1.ccb0f2e6d1689p-1, 0x1.0200p-48,
+    0x1.cdf0b555dc412p-1, 0x1.3600p-48,
     0x1.cf3155b5bab3bp-1, -0x1.6900p-47,
-    0x1.d072d4a0789bcp-1,  0x1.9a00p-47,
+    0x1.d072d4a0789bcp-1, 0x1.9a00p-47,
     0x1.d1b532b08c8fap-1, -0x1.5e00p-46,
-    0x1.d2f87080d8a85p-1,  0x1.d280p-46,
-    0x1.d43c8eacaa203p-1,  0x1.1a00p-47,
-    0x1.d5818dcfba491p-1,  0x1.f000p-50,
+    0x1.d2f87080d8a85p-1, 0x1.d280p-46,
+    0x1.d43c8eacaa203p-1, 0x1.1a00p-47,
+    0x1.d5818dcfba491p-1, 0x1.f000p-50,
     0x1.d6c76e862e6a1p-1, -0x1.3a00p-47,
     0x1.d80e316c9834ep-1, -0x1.cd80p-47,
-    0x1.d955d71ff6090p-1,  0x1.4c00p-48,
-    0x1.da9e603db32aep-1,  0x1.f900p-48,
-    0x1.dbe7cd63a8325p-1,  0x1.9800p-49,
+    0x1.d955d71ff6090p-1, 0x1.4c00p-48,
+    0x1.da9e603db32aep-1, 0x1.f900p-48,
+    0x1.dbe7cd63a8325p-1, 0x1.9800p-49,
     0x1.dd321f301b445p-1, -0x1.5200p-48,
     0x1.de7d5641c05bfp-1, -0x1.d700p-46,
     0x1.dfc97337b9aecp-1, -0x1.6140p-46,
-    0x1.e11676b197d5ep-1,  0x1.b480p-47,
-    0x1.e264614f5a3e7p-1,  0x1.0ce0p-43,
-    0x1.e3b333b16ee5cp-1,  0x1.c680p-47,
+    0x1.e11676b197d5ep-1, 0x1.b480p-47,
+    0x1.e264614f5a3e7p-1, 0x1.0ce0p-43,
+    0x1.e3b333b16ee5cp-1, 0x1.c680p-47,
     0x1.e502ee78b3fb4p-1, -0x1.9300p-47,
     0x1.e653924676d68p-1, -0x1.5000p-49,
     0x1.e7a51fbc74c44p-1, -0x1.7f80p-47,
     0x1.e8f7977cdb726p-1, -0x1.3700p-48,
-    0x1.ea4afa2a490e8p-1,  0x1.5d00p-49,
-    0x1.eb9f4867ccae4p-1,  0x1.61a0p-46,
-    0x1.ecf482d8e680dp-1,  0x1.5500p-48,
-    0x1.ee4aaa2188514p-1,  0x1.6400p-51,
+    0x1.ea4afa2a490e8p-1, 0x1.5d00p-49,
+    0x1.eb9f4867ccae4p-1, 0x1.61a0p-46,
+    0x1.ecf482d8e680dp-1, 0x1.5500p-48,
+    0x1.ee4aaa2188514p-1, 0x1.6400p-51,
     0x1.efa1bee615a13p-1, -0x1.e800p-49,
     0x1.f0f9c1cb64106p-1, -0x1.a880p-48,
     0x1.f252b376bb963p-1, -0x1.c900p-45,
-    0x1.f3ac948dd7275p-1,  0x1.a000p-53,
+    0x1.f3ac948dd7275p-1, 0x1.a000p-53,
     0x1.f50765b6e4524p-1, -0x1.4f00p-48,
-    0x1.f6632798844fdp-1,  0x1.a800p-51,
-    0x1.f7bfdad9cbe38p-1,  0x1.abc0p-48,
+    0x1.f6632798844fdp-1, 0x1.a800p-51,
+    0x1.f7bfdad9cbe38p-1, 0x1.abc0p-48,
     0x1.f91d802243c82p-1, -0x1.4600p-50,
     0x1.fa7c1819e908ep-1, -0x1.b0c0p-47,
     0x1.fbdba3692d511p-1, -0x1.0e00p-51,
     0x1.fd3c22b8f7194p-1, -0x1.0de8p-46,
-    0x1.fe9d96b2a23eep-1,  0x1.e430p-49,
-    0x1.0000000000000p+0,  0x0.0000p+0,
+    0x1.fe9d96b2a23eep-1, 0x1.e430p-49,
+    0x1.0000000000000p+0, 0x0.0000p+0,
     0x1.00b1afa5abcbep+0, -0x1.3400p-52,
     0x1.0163da9fb3303p+0, -0x1.2170p-46,
-    0x1.02168143b0282p+0,  0x1.a400p-52,
-    0x1.02c9a3e77806cp+0,  0x1.f980p-49,
+    0x1.02168143b0282p+0, 0x1.a400p-52,
+    0x1.02c9a3e77806cp+0, 0x1.f980p-49,
     0x1.037d42e11bbcap+0, -0x1.7400p-51,
-    0x1.04315e86e7f89p+0,  0x1.8300p-50,
+    0x1.04315e86e7f89p+0, 0x1.8300p-50,
     0x1.04e5f72f65467p+0, -0x1.a3f0p-46,
     0x1.059b0d315855ap+0, -0x1.2840p-47,
-    0x1.0650a0e3c1f95p+0,  0x1.1600p-48,
-    0x1.0706b29ddf71ap+0,  0x1.5240p-46,
+    0x1.0650a0e3c1f95p+0, 0x1.1600p-48,
+    0x1.0706b29ddf71ap+0, 0x1.5240p-46,
     0x1.07bd42b72a82dp+0, -0x1.9a00p-49,
-    0x1.0874518759bd0p+0,  0x1.6400p-49,
+    0x1.0874518759bd0p+0, 0x1.6400p-49,
     0x1.092bdf66607c8p+0, -0x1.0780p-47,
     0x1.09e3ecac6f383p+0, -0x1.8000p-54,
-    0x1.0a9c79b1f3930p+0,  0x1.fa00p-48,
+    0x1.0a9c79b1f3930p+0, 0x1.fa00p-48,
     0x1.0b5586cf988fcp+0, -0x1.ac80p-48,
-    0x1.0c0f145e46c8ap+0,  0x1.9c00p-50,
-    0x1.0cc922b724816p+0,  0x1.5200p-47,
+    0x1.0c0f145e46c8ap+0, 0x1.9c00p-50,
+    0x1.0cc922b724816p+0, 0x1.5200p-47,
     0x1.0d83b23395dd8p+0, -0x1.ad00p-48,
-    0x1.0e3ec32d3d1f3p+0,  0x1.bac0p-46,
+    0x1.0e3ec32d3d1f3p+0, 0x1.bac0p-46,
     0x1.0efa55fdfa9a6p+0, -0x1.4e80p-47,
     0x1.0fb66affed2f0p+0, -0x1.d300p-47,
-    0x1.1073028d7234bp+0,  0x1.1500p-48,
-    0x1.11301d0125b5bp+0,  0x1.c000p-49,
-    0x1.11edbab5e2af9p+0,  0x1.6bc0p-46,
-    0x1.12abdc06c31d5p+0,  0x1.8400p-49,
+    0x1.1073028d7234bp+0, 0x1.1500p-48,
+    0x1.11301d0125b5bp+0, 0x1.c000p-49,
+    0x1.11edbab5e2af9p+0, 0x1.6bc0p-46,
+    0x1.12abdc06c31d5p+0, 0x1.8400p-49,
     0x1.136a814f2047dp+0, -0x1.ed00p-47,
-    0x1.1429aaea92de9p+0,  0x1.8e00p-49,
-    0x1.14e95934f3138p+0,  0x1.b400p-49,
-    0x1.15a98c8a58e71p+0,  0x1.5300p-47,
-    0x1.166a45471c3dfp+0,  0x1.3380p-47,
-    0x1.172b83c7d5211p+0,  0x1.8d40p-45,
+    0x1.1429aaea92de9p+0, 0x1.8e00p-49,
+    0x1.14e95934f3138p+0, 0x1.b400p-49,
+    0x1.15a98c8a58e71p+0, 0x1.5300p-47,
+    0x1.166a45471c3dfp+0, 0x1.3380p-47,
+    0x1.172b83c7d5211p+0, 0x1.8d40p-45,
     0x1.17ed48695bb9fp+0, -0x1.5d00p-47,
     0x1.18af9388c8d93p+0, -0x1.c880p-46,
-    0x1.1972658375d66p+0,  0x1.1f00p-46,
-    0x1.1a35beb6fcba7p+0,  0x1.0480p-46,
+    0x1.1972658375d66p+0, 0x1.1f00p-46,
+    0x1.1a35beb6fcba7p+0, 0x1.0480p-46,
     0x1.1af99f81387e3p+0, -0x1.7390p-43,
-    0x1.1bbe084045d54p+0,  0x1.4e40p-45,
+    0x1.1bbe084045d54p+0, 0x1.4e40p-45,
     0x1.1c82f95281c43p+0, -0x1.a200p-47,
-    0x1.1d4873168b9b2p+0,  0x1.3800p-49,
-    0x1.1e0e75eb44031p+0,  0x1.ac00p-49,
-    0x1.1ed5022fcd938p+0,  0x1.1900p-47,
+    0x1.1d4873168b9b2p+0, 0x1.3800p-49,
+    0x1.1e0e75eb44031p+0, 0x1.ac00p-49,
+    0x1.1ed5022fcd938p+0, 0x1.1900p-47,
     0x1.1f9c18438cdf7p+0, -0x1.b780p-46,
-    0x1.2063b88628d8fp+0,  0x1.d940p-45,
-    0x1.212be3578a81ep+0,  0x1.8000p-50,
-    0x1.21f49917ddd41p+0,  0x1.b340p-45,
-    0x1.22bdda2791323p+0,  0x1.9f80p-46,
+    0x1.2063b88628d8fp+0, 0x1.d940p-45,
+    0x1.212be3578a81ep+0, 0x1.8000p-50,
+    0x1.21f49917ddd41p+0, 0x1.b340p-45,
+    0x1.22bdda2791323p+0, 0x1.9f80p-46,
     0x1.2387a6e7561e7p+0, -0x1.9c80p-46,
-    0x1.2451ffb821427p+0,  0x1.2300p-47,
+    0x1.2451ffb821427p+0, 0x1.2300p-47,
     0x1.251ce4fb2a602p+0, -0x1.3480p-46,
-    0x1.25e85711eceb0p+0,  0x1.2700p-46,
-    0x1.26b4565e27d16p+0,  0x1.1d00p-46,
-    0x1.2780e341de00fp+0,  0x1.1ee0p-44,
+    0x1.25e85711eceb0p+0, 0x1.2700p-46,
+    0x1.26b4565e27d16p+0, 0x1.1d00p-46,
+    0x1.2780e341de00fp+0, 0x1.1ee0p-44,
     0x1.284dfe1f5633ep+0, -0x1.4c00p-46,
     0x1.291ba7591bb30p+0, -0x1.3d80p-46,
-    0x1.29e9df51fdf09p+0,  0x1.8b00p-47,
+    0x1.29e9df51fdf09p+0, 0x1.8b00p-47,
     0x1.2ab8a66d10e9bp+0, -0x1.27c0p-45,
-    0x1.2b87fd0dada3ap+0,  0x1.a340p-45,
+    0x1.2b87fd0dada3ap+0, 0x1.a340p-45,
     0x1.2c57e39771af9p+0, -0x1.0800p-46,
     0x1.2d285a6e402d9p+0, -0x1.ed00p-47,
     0x1.2df961f641579p+0, -0x1.4200p-48,
@@ -290,78 +290,78 @@ const exp2dt = []f64 {
     0x1.31432edeea50bp+0, -0x1.0df8p-40,
     0x1.32170fc4cd7b8p+0, -0x1.2480p-45,
     0x1.32eb83ba8e9a2p+0, -0x1.5980p-45,
-    0x1.33c08b2641766p+0,  0x1.ed00p-46,
+    0x1.33c08b2641766p+0, 0x1.ed00p-46,
     0x1.3496266e3fa27p+0, -0x1.c000p-50,
     0x1.356c55f929f0fp+0, -0x1.0d80p-44,
-    0x1.36431a2de88b9p+0,  0x1.2c80p-45,
-    0x1.371a7373aaa39p+0,  0x1.0600p-45,
+    0x1.36431a2de88b9p+0, 0x1.2c80p-45,
+    0x1.371a7373aaa39p+0, 0x1.0600p-45,
     0x1.37f26231e74fep+0, -0x1.6600p-46,
     0x1.38cae6d05d838p+0, -0x1.ae00p-47,
     0x1.39a401b713ec3p+0, -0x1.4720p-43,
-    0x1.3a7db34e5a020p+0,  0x1.8200p-47,
-    0x1.3b57fbfec6e95p+0,  0x1.e800p-44,
-    0x1.3c32dc313a8f2p+0,  0x1.f800p-49,
+    0x1.3a7db34e5a020p+0, 0x1.8200p-47,
+    0x1.3b57fbfec6e95p+0, 0x1.e800p-44,
+    0x1.3c32dc313a8f2p+0, 0x1.f800p-49,
     0x1.3d0e544ede122p+0, -0x1.7a00p-46,
-    0x1.3dea64c1234bbp+0,  0x1.6300p-45,
+    0x1.3dea64c1234bbp+0, 0x1.6300p-45,
     0x1.3ec70df1c4eccp+0, -0x1.8a60p-43,
     0x1.3fa4504ac7e8cp+0, -0x1.cdc0p-44,
-    0x1.40822c367a0bbp+0,  0x1.5b80p-45,
-    0x1.4160a21f72e95p+0,  0x1.ec00p-46,
+    0x1.40822c367a0bbp+0, 0x1.5b80p-45,
+    0x1.4160a21f72e95p+0, 0x1.ec00p-46,
     0x1.423fb27094646p+0, -0x1.3600p-46,
-    0x1.431f5d950a920p+0,  0x1.3980p-45,
-    0x1.43ffa3f84b9ebp+0,  0x1.a000p-48,
+    0x1.431f5d950a920p+0, 0x1.3980p-45,
+    0x1.43ffa3f84b9ebp+0, 0x1.a000p-48,
     0x1.44e0860618919p+0, -0x1.6c00p-48,
     0x1.45c2042a7d201p+0, -0x1.bc00p-47,
     0x1.46a41ed1d0016p+0, -0x1.2800p-46,
-    0x1.4786d668b3326p+0,  0x1.0e00p-44,
+    0x1.4786d668b3326p+0, 0x1.0e00p-44,
     0x1.486a2b5c13c00p+0, -0x1.d400p-45,
-    0x1.494e1e192af04p+0,  0x1.c200p-47,
+    0x1.494e1e192af04p+0, 0x1.c200p-47,
     0x1.4a32af0d7d372p+0, -0x1.e500p-46,
-    0x1.4b17dea6db801p+0,  0x1.7800p-47,
+    0x1.4b17dea6db801p+0, 0x1.7800p-47,
     0x1.4bfdad53629e1p+0, -0x1.3800p-46,
-    0x1.4ce41b817c132p+0,  0x1.0800p-47,
-    0x1.4dcb299fddddbp+0,  0x1.c700p-45,
+    0x1.4ce41b817c132p+0, 0x1.0800p-47,
+    0x1.4dcb299fddddbp+0, 0x1.c700p-45,
     0x1.4eb2d81d8ab96p+0, -0x1.ce00p-46,
-    0x1.4f9b2769d2d02p+0,  0x1.9200p-46,
+    0x1.4f9b2769d2d02p+0, 0x1.9200p-46,
     0x1.508417f4531c1p+0, -0x1.8c00p-47,
     0x1.516daa2cf662ap+0, -0x1.a000p-48,
-    0x1.5257de83f51eap+0,  0x1.a080p-43,
+    0x1.5257de83f51eap+0, 0x1.a080p-43,
     0x1.5342b569d4edap+0, -0x1.6d80p-45,
     0x1.542e2f4f6ac1ap+0, -0x1.2440p-44,
-    0x1.551a4ca5d94dbp+0,  0x1.83c0p-43,
-    0x1.56070dde9116bp+0,  0x1.4b00p-45,
-    0x1.56f4736b529dep+0,  0x1.15a0p-43,
+    0x1.551a4ca5d94dbp+0, 0x1.83c0p-43,
+    0x1.56070dde9116bp+0, 0x1.4b00p-45,
+    0x1.56f4736b529dep+0, 0x1.15a0p-43,
     0x1.57e27dbe2c40ep+0, -0x1.9e00p-45,
     0x1.58d12d497c76fp+0, -0x1.3080p-45,
-    0x1.59c0827ff0b4cp+0,  0x1.dec0p-43,
+    0x1.59c0827ff0b4cp+0, 0x1.dec0p-43,
     0x1.5ab07dd485427p+0, -0x1.4000p-51,
-    0x1.5ba11fba87af4p+0,  0x1.0080p-44,
+    0x1.5ba11fba87af4p+0, 0x1.0080p-44,
     0x1.5c9268a59460bp+0, -0x1.6c80p-45,
-    0x1.5d84590998e3fp+0,  0x1.69a0p-43,
+    0x1.5d84590998e3fp+0, 0x1.69a0p-43,
     0x1.5e76f15ad20e1p+0, -0x1.b400p-46,
-    0x1.5f6a320dcebcap+0,  0x1.7700p-46,
-    0x1.605e1b976dcb8p+0,  0x1.6f80p-45,
-    0x1.6152ae6cdf715p+0,  0x1.1000p-47,
+    0x1.5f6a320dcebcap+0, 0x1.7700p-46,
+    0x1.605e1b976dcb8p+0, 0x1.6f80p-45,
+    0x1.6152ae6cdf715p+0, 0x1.1000p-47,
     0x1.6247eb03a5531p+0, -0x1.5d00p-46,
     0x1.633dd1d1929b5p+0, -0x1.2d00p-46,
     0x1.6434634ccc313p+0, -0x1.a800p-49,
     0x1.652b9febc8efap+0, -0x1.8600p-45,
-    0x1.6623882553397p+0,  0x1.1fe0p-40,
+    0x1.6623882553397p+0, 0x1.1fe0p-40,
     0x1.671c1c708328ep+0, -0x1.7200p-44,
-    0x1.68155d44ca97ep+0,  0x1.6800p-49,
+    0x1.68155d44ca97ep+0, 0x1.6800p-49,
     0x1.690f4b19e9471p+0, -0x1.9780p-45,
 };
 
 fn exp2_64(x: f64) f64 {
     @setFloatMode(this, @import("builtin").FloatMode.Strict);
 
-    const tblsiz     = u32(exp2dt.len / 2);
+    const tblsiz = u32(exp2dt.len / 2);
     const redux: f64 = 0x1.8p52 / f64(tblsiz);
-    const P1: f64    = 0x1.62e42fefa39efp-1;
-    const P2: f64    = 0x1.ebfbdff82c575p-3;
-    const P3: f64    = 0x1.c6b08d704a0a6p-5;
-    const P4: f64    = 0x1.3b2ab88f70400p-7;
-    const P5: f64    = 0x1.5d88003875c74p-10;
+    const P1: f64 = 0x1.62e42fefa39efp-1;
+    const P2: f64 = 0x1.ebfbdff82c575p-3;
+    const P3: f64 = 0x1.c6b08d704a0a6p-5;
+    const P4: f64 = 0x1.3b2ab88f70400p-7;
+    const P5: f64 = 0x1.5d88003875c74p-10;
 
     const ux = @bitCast(u64, x);
     const ix = u32(ux >> 32) & 0x7FFFFFFF;
std/math/expm1.zig
@@ -21,11 +21,11 @@ pub fn expm1(x: var) @typeOf(x) {
 fn expm1_32(x_: f32) f32 {
     @setFloatMode(this, builtin.FloatMode.Strict);
     const o_threshold: f32 = 8.8721679688e+01;
-    const ln2_hi: f32      = 6.9313812256e-01;
-    const ln2_lo: f32      = 9.0580006145e-06;
-    const invln2: f32      = 1.4426950216e+00;
+    const ln2_hi: f32 = 6.9313812256e-01;
+    const ln2_lo: f32 = 9.0580006145e-06;
+    const invln2: f32 = 1.4426950216e+00;
     const Q1: f32 = -3.3333212137e-2;
-    const Q2: f32 =  1.5807170421e-3;
+    const Q2: f32 = 1.5807170421e-3;
 
     var x = x_;
     const ux = @bitCast(u32, x);
@@ -93,8 +93,7 @@ fn expm1_32(x_: f32) f32 {
             math.forceEval(x * x);
         }
         return x;
-    }
-    else {
+    } else {
         k = 0;
     }
 
@@ -148,13 +147,13 @@ fn expm1_32(x_: f32) f32 {
 fn expm1_64(x_: f64) f64 {
     @setFloatMode(this, builtin.FloatMode.Strict);
     const o_threshold: f64 = 7.09782712893383973096e+02;
-    const ln2_hi: f64      = 6.93147180369123816490e-01;
-    const ln2_lo: f64      = 1.90821492927058770002e-10;
-    const invln2: f64      = 1.44269504088896338700e+00;
+    const ln2_hi: f64 = 6.93147180369123816490e-01;
+    const ln2_lo: f64 = 1.90821492927058770002e-10;
+    const invln2: f64 = 1.44269504088896338700e+00;
     const Q1: f64 = -3.33333333333331316428e-02;
-    const Q2: f64 =  1.58730158725481460165e-03;
+    const Q2: f64 = 1.58730158725481460165e-03;
     const Q3: f64 = -7.93650757867487942473e-05;
-    const Q4: f64 =  4.00821782732936239552e-06;
+    const Q4: f64 = 4.00821782732936239552e-06;
     const Q5: f64 = -2.01099218183624371326e-07;
 
     var x = x_;
@@ -223,8 +222,7 @@ fn expm1_64(x_: f64) f64 {
             math.forceEval(f32(x));
         }
         return x;
-    }
-    else {
+    } else {
         k = 0;
     }
 
std/math/index.zig
@@ -501,7 +501,7 @@ test "math.negateCast" {
     if (negateCast(u32(@maxValue(i32) + 10))) |_| unreachable else |err| assert(err == error.Overflow);
 }
 
-/// Cast an integer to a different integer type. If the value doesn't fit, 
+/// Cast an integer to a different integer type. If the value doesn't fit,
 /// return an error.
 pub fn cast(comptime T: type, x: var) (error{Overflow}!T) {
     comptime assert(@typeId(T) == builtin.TypeId.Int); // must pass an integer
std/math/log1p.zig
@@ -138,8 +138,7 @@ fn log1p_64(x: f64) f64 {
             c = 0;
             f = x;
         }
-    }
-    else if (hx >= 0x7FF00000) {
+    } else if (hx >= 0x7FF00000) {
         return x;
     }
 
std/math/pow.zig
@@ -28,7 +28,6 @@ const assert = std.debug.assert;
 
 // This implementation is taken from the go stlib, musl is a bit more complex.
 pub fn pow(comptime T: type, x: T, y: T) T {
-
     @setFloatMode(this, @import("builtin").FloatMode.Strict);
 
     if (T != f32 and T != f64) {
std/os/linux/errno.zig
@@ -1,146 +1,427 @@
-pub const EPERM = 1; /// Operation not permitted
-pub const ENOENT = 2; /// No such file or directory
-pub const ESRCH = 3; /// No such process
-pub const EINTR = 4; /// Interrupted system call
-pub const EIO = 5; /// I/O error
-pub const ENXIO = 6; /// No such device or address
-pub const E2BIG = 7; /// Arg list too long
-pub const ENOEXEC = 8; /// Exec format error
-pub const EBADF = 9; /// Bad file number
-pub const ECHILD = 10; /// No child processes
-pub const EAGAIN = 11; /// Try again
-pub const ENOMEM = 12; /// Out of memory
-pub const EACCES = 13; /// Permission denied
-pub const EFAULT = 14; /// Bad address
-pub const ENOTBLK = 15; /// Block device required
-pub const EBUSY = 16; /// Device or resource busy
-pub const EEXIST = 17; /// File exists
-pub const EXDEV = 18; /// Cross-device link
-pub const ENODEV = 19; /// No such device
-pub const ENOTDIR = 20; /// Not a directory
-pub const EISDIR = 21; /// Is a directory
-pub const EINVAL = 22; /// Invalid argument
-pub const ENFILE = 23; /// File table overflow
-pub const EMFILE = 24; /// Too many open files
-pub const ENOTTY = 25; /// Not a typewriter
-pub const ETXTBSY = 26; /// Text file busy
-pub const EFBIG = 27; /// File too large
-pub const ENOSPC = 28; /// No space left on device
-pub const ESPIPE = 29; /// Illegal seek
-pub const EROFS = 30; /// Read-only file system
-pub const EMLINK = 31; /// Too many links
-pub const EPIPE = 32; /// Broken pipe
-pub const EDOM = 33; /// Math argument out of domain of func
-pub const ERANGE = 34; /// Math result not representable
-pub const EDEADLK = 35; /// Resource deadlock would occur
-pub const ENAMETOOLONG = 36; /// File name too long
-pub const ENOLCK = 37; /// No record locks available
-pub const ENOSYS = 38; /// Function not implemented
-pub const ENOTEMPTY = 39; /// Directory not empty
-pub const ELOOP = 40; /// Too many symbolic links encountered
-pub const EWOULDBLOCK = EAGAIN; /// Operation would block
-pub const ENOMSG = 42; /// No message of desired type
-pub const EIDRM = 43; /// Identifier removed
-pub const ECHRNG = 44; /// Channel number out of range
-pub const EL2NSYNC = 45; /// Level 2 not synchronized
-pub const EL3HLT = 46; /// Level 3 halted
-pub const EL3RST = 47; /// Level 3 reset
-pub const ELNRNG = 48; /// Link number out of range
-pub const EUNATCH = 49; /// Protocol driver not attached
-pub const ENOCSI = 50; /// No CSI structure available
-pub const EL2HLT = 51; /// Level 2 halted
-pub const EBADE = 52; /// Invalid exchange
-pub const EBADR = 53; /// Invalid request descriptor
-pub const EXFULL = 54; /// Exchange full
-pub const ENOANO = 55; /// No anode
-pub const EBADRQC = 56; /// Invalid request code
-pub const EBADSLT = 57; /// Invalid slot
-
-pub const EBFONT = 59; /// Bad font file format
-pub const ENOSTR = 60; /// Device not a stream
-pub const ENODATA = 61; /// No data available
-pub const ETIME = 62; /// Timer expired
-pub const ENOSR = 63; /// Out of streams resources
-pub const ENONET = 64; /// Machine is not on the network
-pub const ENOPKG = 65; /// Package not installed
-pub const EREMOTE = 66; /// Object is remote
-pub const ENOLINK = 67; /// Link has been severed
-pub const EADV = 68; /// Advertise error
-pub const ESRMNT = 69; /// Srmount error
-pub const ECOMM = 70; /// Communication error on send
-pub const EPROTO = 71; /// Protocol error
-pub const EMULTIHOP = 72; /// Multihop attempted
-pub const EDOTDOT = 73; /// RFS specific error
-pub const EBADMSG = 74; /// Not a data message
-pub const EOVERFLOW = 75; /// Value too large for defined data type
-pub const ENOTUNIQ = 76; /// Name not unique on network
-pub const EBADFD = 77; /// File descriptor in bad state
-pub const EREMCHG = 78; /// Remote address changed
-pub const ELIBACC = 79; /// Can not access a needed shared library
-pub const ELIBBAD = 80; /// Accessing a corrupted shared library
-pub const ELIBSCN = 81; /// .lib section in a.out corrupted
-pub const ELIBMAX = 82; /// Attempting to link in too many shared libraries
-pub const ELIBEXEC = 83; /// Cannot exec a shared library directly
-pub const EILSEQ = 84; /// Illegal byte sequence
-pub const ERESTART = 85; /// Interrupted system call should be restarted
-pub const ESTRPIPE = 86; /// Streams pipe error
-pub const EUSERS = 87; /// Too many users
-pub const ENOTSOCK = 88; /// Socket operation on non-socket
-pub const EDESTADDRREQ = 89; /// Destination address required
-pub const EMSGSIZE = 90; /// Message too long
-pub const EPROTOTYPE = 91; /// Protocol wrong type for socket
-pub const ENOPROTOOPT = 92; /// Protocol not available
-pub const EPROTONOSUPPORT = 93; /// Protocol not supported
-pub const ESOCKTNOSUPPORT = 94; /// Socket type not supported
-pub const EOPNOTSUPP = 95; /// Operation not supported on transport endpoint
-pub const EPFNOSUPPORT = 96; /// Protocol family not supported
-pub const EAFNOSUPPORT = 97; /// Address family not supported by protocol
-pub const EADDRINUSE = 98; /// Address already in use
-pub const EADDRNOTAVAIL = 99; /// Cannot assign requested address
-pub const ENETDOWN = 100; /// Network is down
-pub const ENETUNREACH = 101; /// Network is unreachable
-pub const ENETRESET = 102; /// Network dropped connection because of reset
-pub const ECONNABORTED = 103; /// Software caused connection abort
-pub const ECONNRESET = 104; /// Connection reset by peer
-pub const ENOBUFS = 105; /// No buffer space available
-pub const EISCONN = 106; /// Transport endpoint is already connected
-pub const ENOTCONN = 107; /// Transport endpoint is not connected
-pub const ESHUTDOWN = 108; /// Cannot send after transport endpoint shutdown
-pub const ETOOMANYREFS = 109; /// Too many references: cannot splice
-pub const ETIMEDOUT = 110; /// Connection timed out
-pub const ECONNREFUSED = 111; /// Connection refused
-pub const EHOSTDOWN = 112; /// Host is down
-pub const EHOSTUNREACH = 113; /// No route to host
-pub const EALREADY = 114; /// Operation already in progress
-pub const EINPROGRESS = 115; /// Operation now in progress
-pub const ESTALE = 116; /// Stale NFS file handle
-pub const EUCLEAN = 117; /// Structure needs cleaning
-pub const ENOTNAM = 118; /// Not a XENIX named type file
-pub const ENAVAIL = 119; /// No XENIX semaphores available
-pub const EISNAM = 120; /// Is a named type file
-pub const EREMOTEIO = 121; /// Remote I/O error
-pub const EDQUOT = 122; /// Quota exceeded
-
-pub const ENOMEDIUM = 123; /// No medium found
-pub const EMEDIUMTYPE = 124; /// Wrong medium type
+/// Operation not permitted
+pub const EPERM = 1;
+
+/// No such file or directory
+pub const ENOENT = 2;
+
+/// No such process
+pub const ESRCH = 3;
+
+/// Interrupted system call
+pub const EINTR = 4;
+
+/// I/O error
+pub const EIO = 5;
+
+/// No such device or address
+pub const ENXIO = 6;
+
+/// Arg list too long
+pub const E2BIG = 7;
+
+/// Exec format error
+pub const ENOEXEC = 8;
+
+/// Bad file number
+pub const EBADF = 9;
+
+/// No child processes
+pub const ECHILD = 10;
+
+/// Try again
+pub const EAGAIN = 11;
+
+/// Out of memory
+pub const ENOMEM = 12;
+
+/// Permission denied
+pub const EACCES = 13;
+
+/// Bad address
+pub const EFAULT = 14;
+
+/// Block device required
+pub const ENOTBLK = 15;
+
+/// Device or resource busy
+pub const EBUSY = 16;
+
+/// File exists
+pub const EEXIST = 17;
+
+/// Cross-device link
+pub const EXDEV = 18;
+
+/// No such device
+pub const ENODEV = 19;
+
+/// Not a directory
+pub const ENOTDIR = 20;
+
+/// Is a directory
+pub const EISDIR = 21;
+
+/// Invalid argument
+pub const EINVAL = 22;
+
+/// File table overflow
+pub const ENFILE = 23;
+
+/// Too many open files
+pub const EMFILE = 24;
+
+/// Not a typewriter
+pub const ENOTTY = 25;
+
+/// Text file busy
+pub const ETXTBSY = 26;
+
+/// File too large
+pub const EFBIG = 27;
+
+/// No space left on device
+pub const ENOSPC = 28;
+
+/// Illegal seek
+pub const ESPIPE = 29;
+
+/// Read-only file system
+pub const EROFS = 30;
+
+/// Too many links
+pub const EMLINK = 31;
+
+/// Broken pipe
+pub const EPIPE = 32;
+
+/// Math argument out of domain of func
+pub const EDOM = 33;
+
+/// Math result not representable
+pub const ERANGE = 34;
+
+/// Resource deadlock would occur
+pub const EDEADLK = 35;
+
+/// File name too long
+pub const ENAMETOOLONG = 36;
+
+/// No record locks available
+pub const ENOLCK = 37;
+
+/// Function not implemented
+pub const ENOSYS = 38;
+
+/// Directory not empty
+pub const ENOTEMPTY = 39;
+
+/// Too many symbolic links encountered
+pub const ELOOP = 40;
+
+/// Operation would block
+pub const EWOULDBLOCK = EAGAIN;
+
+/// No message of desired type
+pub const ENOMSG = 42;
+
+/// Identifier removed
+pub const EIDRM = 43;
+
+/// Channel number out of range
+pub const ECHRNG = 44;
+
+/// Level 2 not synchronized
+pub const EL2NSYNC = 45;
+
+/// Level 3 halted
+pub const EL3HLT = 46;
+
+/// Level 3 reset
+pub const EL3RST = 47;
+
+/// Link number out of range
+pub const ELNRNG = 48;
+
+/// Protocol driver not attached
+pub const EUNATCH = 49;
+
+/// No CSI structure available
+pub const ENOCSI = 50;
+
+/// Level 2 halted
+pub const EL2HLT = 51;
+
+/// Invalid exchange
+pub const EBADE = 52;
+
+/// Invalid request descriptor
+pub const EBADR = 53;
+
+/// Exchange full
+pub const EXFULL = 54;
+
+/// No anode
+pub const ENOANO = 55;
+
+/// Invalid request code
+pub const EBADRQC = 56;
+
+/// Invalid slot
+pub const EBADSLT = 57;
+
+/// Bad font file format
+pub const EBFONT = 59;
+
+/// Device not a stream
+pub const ENOSTR = 60;
+
+/// No data available
+pub const ENODATA = 61;
+
+/// Timer expired
+pub const ETIME = 62;
+
+/// Out of streams resources
+pub const ENOSR = 63;
+
+/// Machine is not on the network
+pub const ENONET = 64;
+
+/// Package not installed
+pub const ENOPKG = 65;
+
+/// Object is remote
+pub const EREMOTE = 66;
+
+/// Link has been severed
+pub const ENOLINK = 67;
+
+/// Advertise error
+pub const EADV = 68;
+
+/// Srmount error
+pub const ESRMNT = 69;
+
+/// Communication error on send
+pub const ECOMM = 70;
+
+/// Protocol error
+pub const EPROTO = 71;
+
+/// Multihop attempted
+pub const EMULTIHOP = 72;
+
+/// RFS specific error
+pub const EDOTDOT = 73;
+
+/// Not a data message
+pub const EBADMSG = 74;
+
+/// Value too large for defined data type
+pub const EOVERFLOW = 75;
+
+/// Name not unique on network
+pub const ENOTUNIQ = 76;
+
+/// File descriptor in bad state
+pub const EBADFD = 77;
+
+/// Remote address changed
+pub const EREMCHG = 78;
+
+/// Can not access a needed shared library
+pub const ELIBACC = 79;
+
+/// Accessing a corrupted shared library
+pub const ELIBBAD = 80;
+
+/// .lib section in a.out corrupted
+pub const ELIBSCN = 81;
+
+/// Attempting to link in too many shared libraries
+pub const ELIBMAX = 82;
+
+/// Cannot exec a shared library directly
+pub const ELIBEXEC = 83;
+
+/// Illegal byte sequence
+pub const EILSEQ = 84;
+
+/// Interrupted system call should be restarted
+pub const ERESTART = 85;
+
+/// Streams pipe error
+pub const ESTRPIPE = 86;
+
+/// Too many users
+pub const EUSERS = 87;
+
+/// Socket operation on non-socket
+pub const ENOTSOCK = 88;
+
+/// Destination address required
+pub const EDESTADDRREQ = 89;
+
+/// Message too long
+pub const EMSGSIZE = 90;
+
+/// Protocol wrong type for socket
+pub const EPROTOTYPE = 91;
+
+/// Protocol not available
+pub const ENOPROTOOPT = 92;
+
+/// Protocol not supported
+pub const EPROTONOSUPPORT = 93;
+
+/// Socket type not supported
+pub const ESOCKTNOSUPPORT = 94;
+
+/// Operation not supported on transport endpoint
+pub const EOPNOTSUPP = 95;
+
+/// Protocol family not supported
+pub const EPFNOSUPPORT = 96;
+
+/// Address family not supported by protocol
+pub const EAFNOSUPPORT = 97;
+
+/// Address already in use
+pub const EADDRINUSE = 98;
+
+/// Cannot assign requested address
+pub const EADDRNOTAVAIL = 99;
+
+/// Network is down
+pub const ENETDOWN = 100;
+
+/// Network is unreachable
+pub const ENETUNREACH = 101;
+
+/// Network dropped connection because of reset
+pub const ENETRESET = 102;
+
+/// Software caused connection abort
+pub const ECONNABORTED = 103;
+
+/// Connection reset by peer
+pub const ECONNRESET = 104;
+
+/// No buffer space available
+pub const ENOBUFS = 105;
+
+/// Transport endpoint is already connected
+pub const EISCONN = 106;
+
+/// Transport endpoint is not connected
+pub const ENOTCONN = 107;
+
+/// Cannot send after transport endpoint shutdown
+pub const ESHUTDOWN = 108;
+
+/// Too many references: cannot splice
+pub const ETOOMANYREFS = 109;
+
+/// Connection timed out
+pub const ETIMEDOUT = 110;
+
+/// Connection refused
+pub const ECONNREFUSED = 111;
+
+/// Host is down
+pub const EHOSTDOWN = 112;
+
+/// No route to host
+pub const EHOSTUNREACH = 113;
+
+/// Operation already in progress
+pub const EALREADY = 114;
+
+/// Operation now in progress
+pub const EINPROGRESS = 115;
+
+/// Stale NFS file handle
+pub const ESTALE = 116;
+
+/// Structure needs cleaning
+pub const EUCLEAN = 117;
+
+/// Not a XENIX named type file
+pub const ENOTNAM = 118;
+
+/// No XENIX semaphores available
+pub const ENAVAIL = 119;
+
+/// Is a named type file
+pub const EISNAM = 120;
+
+/// Remote I/O error
+pub const EREMOTEIO = 121;
+
+/// Quota exceeded
+pub const EDQUOT = 122;
+
+/// No medium found
+pub const ENOMEDIUM = 123;
+
+/// Wrong medium type
+pub const EMEDIUMTYPE = 124;
 
 // nameserver query return codes
-pub const ENSROK = 0; /// DNS server returned answer with no data
-pub const ENSRNODATA = 160; /// DNS server returned answer with no data
-pub const ENSRFORMERR = 161; /// DNS server claims query was misformatted
-pub const ENSRSERVFAIL = 162; /// DNS server returned general failure
-pub const ENSRNOTFOUND = 163; /// Domain name not found
-pub const ENSRNOTIMP = 164; /// DNS server does not implement requested operation
-pub const ENSRREFUSED = 165; /// DNS server refused query
-pub const ENSRBADQUERY = 166; /// Misformatted DNS query
-pub const ENSRBADNAME = 167; /// Misformatted domain name
-pub const ENSRBADFAMILY = 168; /// Unsupported address family
-pub const ENSRBADRESP = 169; /// Misformatted DNS reply
-pub const ENSRCONNREFUSED = 170; /// Could not contact DNS servers
-pub const ENSRTIMEOUT = 171; /// Timeout while contacting DNS servers
-pub const ENSROF = 172; /// End of file
-pub const ENSRFILE = 173; /// Error reading file
-pub const ENSRNOMEM = 174; /// Out of memory
-pub const ENSRDESTRUCTION = 175; /// Application terminated lookup
-pub const ENSRQUERYDOMAINTOOLONG = 176; /// Domain name is too long
-pub const ENSRCNAMELOOP = 177; /// Domain name is too long
+
+/// DNS server returned answer with no data
+pub const ENSROK = 0;
+
+/// DNS server returned answer with no data
+pub const ENSRNODATA = 160;
+
+/// DNS server claims query was misformatted
+pub const ENSRFORMERR = 161;
+
+/// DNS server returned general failure
+pub const ENSRSERVFAIL = 162;
+
+/// Domain name not found
+pub const ENSRNOTFOUND = 163;
+
+/// DNS server does not implement requested operation
+pub const ENSRNOTIMP = 164;
+
+/// DNS server refused query
+pub const ENSRREFUSED = 165;
+
+/// Misformatted DNS query
+pub const ENSRBADQUERY = 166;
+
+/// Misformatted domain name
+pub const ENSRBADNAME = 167;
+
+/// Unsupported address family
+pub const ENSRBADFAMILY = 168;
+
+/// Misformatted DNS reply
+pub const ENSRBADRESP = 169;
+
+/// Could not contact DNS servers
+pub const ENSRCONNREFUSED = 170;
+
+/// Timeout while contacting DNS servers
+pub const ENSRTIMEOUT = 171;
+
+/// End of file
+pub const ENSROF = 172;
+
+/// Error reading file
+pub const ENSRFILE = 173;
+
+/// Out of memory
+pub const ENSRNOMEM = 174;
+
+/// Application terminated lookup
+pub const ENSRDESTRUCTION = 175;
+
+/// Domain name is too long
+pub const ENSRQUERYDOMAINTOOLONG = 176;
+
+/// Domain name is too long
+pub const ENSRCNAMELOOP = 177;
std/os/linux/index.zig
@@ -823,8 +823,7 @@ pub fn clock_gettime(clk_id: i32, tp: &timespec) usize {
         if (@ptrToInt(f) != 0) {
             const rc = f(clk_id, tp);
             switch (rc) {
-                0,
-                @bitCast(usize, isize(-EINVAL)) => return rc,
+                0, @bitCast(usize, isize(-EINVAL)) => return rc,
                 else => {},
             }
         }
std/os/linux/test.zig
@@ -11,22 +11,22 @@ test "timer" {
     const timer_fd = linux.timerfd_create(linux.CLOCK_MONOTONIC, 0);
     assert(linux.getErrno(timer_fd) == 0);
 
-    const time_interval = linux.timespec {
+    const time_interval = linux.timespec{
         .tv_sec = 0,
-        .tv_nsec = 2000000
+        .tv_nsec = 2000000,
     };
 
-    const new_time = linux.itimerspec {
+    const new_time = linux.itimerspec{
         .it_interval = time_interval,
-        .it_value = time_interval
+        .it_value = time_interval,
     };
 
     err = linux.timerfd_settime(i32(timer_fd), 0, &new_time, null);
     assert(err == 0);
 
-    var event = linux.epoll_event {
+    var event = linux.epoll_event{
         .events = linux.EPOLLIN | linux.EPOLLOUT | linux.EPOLLET,
-        .data = linux.epoll_data { .ptr = 0 },
+        .data = linux.epoll_data{ .ptr = 0 },
     };
 
     err = linux.epoll_ctl(i32(epoll_fd), linux.EPOLL_CTL_ADD, i32(timer_fd), &event);
std/os/linux/vdso.zig
@@ -16,7 +16,10 @@ pub fn lookup(vername: []const u8, name: []const u8) usize {
     var base: usize = @maxValue(usize);
     {
         var i: usize = 0;
-        while (i < eh.e_phnum) : ({i += 1; ph_addr += eh.e_phentsize;}) {
+        while (i < eh.e_phnum) : ({
+            i += 1;
+            ph_addr += eh.e_phentsize;
+        }) {
             const this_ph = @intToPtr(&elf.Phdr, ph_addr);
             switch (this_ph.p_type) {
                 elf.PT_LOAD => base = vdso_addr + this_ph.p_offset - this_ph.p_vaddr,
@@ -54,15 +57,14 @@ pub fn lookup(vername: []const u8, name: []const u8) usize {
     const hashtab = maybe_hashtab ?? return 0;
     if (maybe_verdef == null) maybe_versym = null;
 
-
-    const OK_TYPES = (1<<elf.STT_NOTYPE | 1<<elf.STT_OBJECT | 1<<elf.STT_FUNC | 1<<elf.STT_COMMON);
-    const OK_BINDS = (1<<elf.STB_GLOBAL | 1<<elf.STB_WEAK | 1<<elf.STB_GNU_UNIQUE);
+    const OK_TYPES = (1 << elf.STT_NOTYPE | 1 << elf.STT_OBJECT | 1 << elf.STT_FUNC | 1 << elf.STT_COMMON);
+    const OK_BINDS = (1 << elf.STB_GLOBAL | 1 << elf.STB_WEAK | 1 << elf.STB_GNU_UNIQUE);
 
     var i: usize = 0;
     while (i < hashtab[1]) : (i += 1) {
-        if (0==(u32(1)<<u5(syms[i].st_info&0xf) & OK_TYPES)) continue;
-        if (0==(u32(1)<<u5(syms[i].st_info>>4) & OK_BINDS)) continue;
-        if (0==syms[i].st_shndx) continue;
+        if (0 == (u32(1) << u5(syms[i].st_info & 0xf) & OK_TYPES)) continue;
+        if (0 == (u32(1) << u5(syms[i].st_info >> 4) & OK_BINDS)) continue;
+        if (0 == syms[i].st_shndx) continue;
         if (!mem.eql(u8, name, cstr.toSliceConst(&strings[syms[i].st_name]))) continue;
         if (maybe_versym) |versym| {
             if (!checkver(??maybe_verdef, versym[i], vername, strings))
@@ -78,12 +80,12 @@ fn checkver(def_arg: &elf.Verdef, vsym_arg: i32, vername: []const u8, strings: &
     var def = def_arg;
     const vsym = @bitCast(u32, vsym_arg) & 0x7fff;
     while (true) {
-        if (0==(def.vd_flags & elf.VER_FLG_BASE) and (def.vd_ndx & 0x7fff) == vsym)
+        if (0 == (def.vd_flags & elf.VER_FLG_BASE) and (def.vd_ndx & 0x7fff) == vsym)
             break;
         if (def.vd_next == 0)
             return false;
         def = @intToPtr(&elf.Verdef, @ptrToInt(def) + def.vd_next);
     }
-    const aux = @intToPtr(&elf.Verdaux, @ptrToInt(def ) + def.vd_aux);
+    const aux = @intToPtr(&elf.Verdaux, @ptrToInt(def) + def.vd_aux);
     return mem.eql(u8, vername, cstr.toSliceConst(&strings[aux.vda_name]));
 }
std/os/linux/x86_64.zig
@@ -330,26 +330,26 @@ pub const SYS_userfaultfd = 323;
 pub const SYS_membarrier = 324;
 pub const SYS_mlock2 = 325;
 
-pub const O_CREAT =        0o100;
-pub const O_EXCL =         0o200;
-pub const O_NOCTTY =       0o400;
-pub const O_TRUNC =       0o1000;
-pub const O_APPEND =      0o2000;
-pub const O_NONBLOCK =    0o4000;
-pub const O_DSYNC =      0o10000;
-pub const O_SYNC =     0o4010000;
-pub const O_RSYNC =    0o4010000;
+pub const O_CREAT = 0o100;
+pub const O_EXCL = 0o200;
+pub const O_NOCTTY = 0o400;
+pub const O_TRUNC = 0o1000;
+pub const O_APPEND = 0o2000;
+pub const O_NONBLOCK = 0o4000;
+pub const O_DSYNC = 0o10000;
+pub const O_SYNC = 0o4010000;
+pub const O_RSYNC = 0o4010000;
 pub const O_DIRECTORY = 0o200000;
-pub const O_NOFOLLOW =  0o400000;
-pub const O_CLOEXEC =  0o2000000;
+pub const O_NOFOLLOW = 0o400000;
+pub const O_CLOEXEC = 0o2000000;
 
-pub const O_ASYNC      = 0o20000;
-pub const O_DIRECT     = 0o40000;
-pub const O_LARGEFILE       =  0;
-pub const O_NOATIME  = 0o1000000;
-pub const O_PATH    = 0o10000000;
+pub const O_ASYNC = 0o20000;
+pub const O_DIRECT = 0o40000;
+pub const O_LARGEFILE = 0;
+pub const O_NOATIME = 0o1000000;
+pub const O_PATH = 0o10000000;
 pub const O_TMPFILE = 0o20200000;
-pub const O_NDELAY  = O_NONBLOCK;
+pub const O_NDELAY = O_NONBLOCK;
 
 pub const F_DUPFD = 0;
 pub const F_GETFD = 1;
@@ -371,7 +371,6 @@ pub const F_GETOWN_EX = 16;
 
 pub const F_GETOWNER_UIDS = 17;
 
-
 pub const VDSO_USEFUL = true;
 pub const VDSO_CGT_SYM = "__vdso_clock_gettime";
 pub const VDSO_CGT_VER = "LINUX_2.6";
@@ -382,72 +381,85 @@ pub fn syscall0(number: usize) usize {
     return asm volatile ("syscall"
         : [ret] "={rax}" (-> usize)
         : [number] "{rax}" (number)
-        : "rcx", "r11");
+        : "rcx", "r11"
+    );
 }
 
 pub fn syscall1(number: usize, arg1: usize) usize {
     return asm volatile ("syscall"
         : [ret] "={rax}" (-> usize)
         : [number] "{rax}" (number),
-            [arg1] "{rdi}" (arg1)
-        : "rcx", "r11");
+          [arg1] "{rdi}" (arg1)
+        : "rcx", "r11"
+    );
 }
 
 pub fn syscall2(number: usize, arg1: usize, arg2: usize) usize {
     return asm volatile ("syscall"
         : [ret] "={rax}" (-> usize)
         : [number] "{rax}" (number),
-            [arg1] "{rdi}" (arg1),
-            [arg2] "{rsi}" (arg2)
-        : "rcx", "r11");
+          [arg1] "{rdi}" (arg1),
+          [arg2] "{rsi}" (arg2)
+        : "rcx", "r11"
+    );
 }
 
 pub fn syscall3(number: usize, arg1: usize, arg2: usize, arg3: usize) usize {
     return asm volatile ("syscall"
         : [ret] "={rax}" (-> usize)
         : [number] "{rax}" (number),
-            [arg1] "{rdi}" (arg1),
-            [arg2] "{rsi}" (arg2),
-            [arg3] "{rdx}" (arg3)
-        : "rcx", "r11");
+          [arg1] "{rdi}" (arg1),
+          [arg2] "{rsi}" (arg2),
+          [arg3] "{rdx}" (arg3)
+        : "rcx", "r11"
+    );
 }
 
 pub fn syscall4(number: usize, arg1: usize, arg2: usize, arg3: usize, arg4: usize) usize {
     return asm volatile ("syscall"
         : [ret] "={rax}" (-> usize)
         : [number] "{rax}" (number),
-            [arg1] "{rdi}" (arg1),
-            [arg2] "{rsi}" (arg2),
-            [arg3] "{rdx}" (arg3),
-            [arg4] "{r10}" (arg4)
-        : "rcx", "r11");
+          [arg1] "{rdi}" (arg1),
+          [arg2] "{rsi}" (arg2),
+          [arg3] "{rdx}" (arg3),
+          [arg4] "{r10}" (arg4)
+        : "rcx", "r11"
+    );
 }
 
 pub fn syscall5(number: usize, arg1: usize, arg2: usize, arg3: usize, arg4: usize, arg5: usize) usize {
     return asm volatile ("syscall"
         : [ret] "={rax}" (-> usize)
         : [number] "{rax}" (number),
-            [arg1] "{rdi}" (arg1),
-            [arg2] "{rsi}" (arg2),
-            [arg3] "{rdx}" (arg3),
-            [arg4] "{r10}" (arg4),
-            [arg5] "{r8}" (arg5)
-        : "rcx", "r11");
+          [arg1] "{rdi}" (arg1),
+          [arg2] "{rsi}" (arg2),
+          [arg3] "{rdx}" (arg3),
+          [arg4] "{r10}" (arg4),
+          [arg5] "{r8}" (arg5)
+        : "rcx", "r11"
+    );
 }
 
-pub fn syscall6(number: usize, arg1: usize, arg2: usize, arg3: usize, arg4: usize,
-    arg5: usize, arg6: usize) usize
-{
+pub fn syscall6(
+    number: usize,
+    arg1: usize,
+    arg2: usize,
+    arg3: usize,
+    arg4: usize,
+    arg5: usize,
+    arg6: usize,
+) usize {
     return asm volatile ("syscall"
         : [ret] "={rax}" (-> usize)
         : [number] "{rax}" (number),
-            [arg1] "{rdi}" (arg1),
-            [arg2] "{rsi}" (arg2),
-            [arg3] "{rdx}" (arg3),
-            [arg4] "{r10}" (arg4),
-            [arg5] "{r8}" (arg5),
-            [arg6] "{r9}" (arg6)
-        : "rcx", "r11");
+          [arg1] "{rdi}" (arg1),
+          [arg2] "{rsi}" (arg2),
+          [arg3] "{rdx}" (arg3),
+          [arg4] "{r10}" (arg4),
+          [arg5] "{r8}" (arg5),
+          [arg6] "{r9}" (arg6)
+        : "rcx", "r11"
+    );
 }
 
 /// This matches the libc clone function.
@@ -457,10 +469,10 @@ pub nakedcc fn restore_rt() void {
     return asm volatile ("syscall"
         :
         : [number] "{rax}" (usize(SYS_rt_sigreturn))
-        : "rcx", "r11");
+        : "rcx", "r11"
+    );
 }
 
-
 pub const msghdr = extern struct {
     msg_name: &u8,
     msg_namelen: socklen_t,
std/os/windows/error.zig
@@ -1,2379 +1,3567 @@
 /// The operation completed successfully.
 pub const SUCCESS = 0;
+
 /// Incorrect function.
 pub const INVALID_FUNCTION = 1;
+
 /// The system cannot find the file specified.
 pub const FILE_NOT_FOUND = 2;
+
 /// The system cannot find the path specified.
 pub const PATH_NOT_FOUND = 3;
+
 /// The system cannot open the file.
 pub const TOO_MANY_OPEN_FILES = 4;
+
 /// Access is denied.
 pub const ACCESS_DENIED = 5;
+
 /// The handle is invalid.
 pub const INVALID_HANDLE = 6;
+
 /// The storage control blocks were destroyed.
 pub const ARENA_TRASHED = 7;
+
 /// Not enough storage is available to process this command.
 pub const NOT_ENOUGH_MEMORY = 8;
+
 /// The storage control block address is invalid.
 pub const INVALID_BLOCK = 9;
+
 /// The environment is incorrect.
 pub const BAD_ENVIRONMENT = 10;
+
 /// An attempt was made to load a program with an incorrect format.
 pub const BAD_FORMAT = 11;
+
 /// The access code is invalid.
 pub const INVALID_ACCESS = 12;
+
 /// The data is invalid.
 pub const INVALID_DATA = 13;
+
 /// Not enough storage is available to complete this operation.
 pub const OUTOFMEMORY = 14;
+
 /// The system cannot find the drive specified.
 pub const INVALID_DRIVE = 15;
+
 /// The directory cannot be removed.
 pub const CURRENT_DIRECTORY = 16;
+
 /// The system cannot move the file to a different disk drive.
 pub const NOT_SAME_DEVICE = 17;
+
 /// There are no more files.
 pub const NO_MORE_FILES = 18;
+
 /// The media is write protected.
 pub const WRITE_PROTECT = 19;
+
 /// The system cannot find the device specified.
 pub const BAD_UNIT = 20;
+
 /// The device is not ready.
 pub const NOT_READY = 21;
+
 /// The device does not recognize the command.
 pub const BAD_COMMAND = 22;
+
 /// Data error (cyclic redundancy check).
 pub const CRC = 23;
+
 /// The program issued a command but the command length is incorrect.
 pub const BAD_LENGTH = 24;
+
 /// The drive cannot locate a specific area or track on the disk.
 pub const SEEK = 25;
+
 /// The specified disk or diskette cannot be accessed.
 pub const NOT_DOS_DISK = 26;
+
 /// The drive cannot find the sector requested.
 pub const SECTOR_NOT_FOUND = 27;
+
 /// The printer is out of paper.
 pub const OUT_OF_PAPER = 28;
+
 /// The system cannot write to the specified device.
 pub const WRITE_FAULT = 29;
+
 /// The system cannot read from the specified device.
 pub const READ_FAULT = 30;
+
 /// A device attached to the system is not functioning.
 pub const GEN_FAILURE = 31;
+
 /// The process cannot access the file because it is being used by another process.
 pub const SHARING_VIOLATION = 32;
+
 /// The process cannot access the file because another process has locked a portion of the file.
 pub const LOCK_VIOLATION = 33;
+
 /// The wrong diskette is in the drive. Insert %2 (Volume Serial Number: %3) into drive %1.
 pub const WRONG_DISK = 34;
+
 /// Too many files opened for sharing.
 pub const SHARING_BUFFER_EXCEEDED = 36;
+
 /// Reached the end of the file.
 pub const HANDLE_EOF = 38;
+
 /// The disk is full.
 pub const HANDLE_DISK_FULL = 39;
+
 /// The request is not supported.
 pub const NOT_SUPPORTED = 50;
+
 /// Windows cannot find the network path. Verify that the network path is correct and the destination computer is not busy or turned off. If Windows still cannot find the network path, contact your network administrator.
 pub const REM_NOT_LIST = 51;
+
 /// You were not connected because a duplicate name exists on the network. If joining a domain, go to System in Control Panel to change the computer name and try again. If joining a workgroup, choose another workgroup name.
 pub const DUP_NAME = 52;
+
 /// The network path was not found.
 pub const BAD_NETPATH = 53;
+
 /// The network is busy.
 pub const NETWORK_BUSY = 54;
+
 /// The specified network resource or device is no longer available.
 pub const DEV_NOT_EXIST = 55;
+
 /// The network BIOS command limit has been reached.
 pub const TOO_MANY_CMDS = 56;
+
 /// A network adapter hardware error occurred.
 pub const ADAP_HDW_ERR = 57;
+
 /// The specified server cannot perform the requested operation.
 pub const BAD_NET_RESP = 58;
+
 /// An unexpected network error occurred.
 pub const UNEXP_NET_ERR = 59;
+
 /// The remote adapter is not compatible.
 pub const BAD_REM_ADAP = 60;
+
 /// The printer queue is full.
 pub const PRINTQ_FULL = 61;
+
 /// Space to store the file waiting to be printed is not available on the server.
 pub const NO_SPOOL_SPACE = 62;
+
 /// Your file waiting to be printed was deleted.
 pub const PRINT_CANCELLED = 63;
+
 /// The specified network name is no longer available.
 pub const NETNAME_DELETED = 64;
+
 /// Network access is denied.
 pub const NETWORK_ACCESS_DENIED = 65;
+
 /// The network resource type is not correct.
 pub const BAD_DEV_TYPE = 66;
+
 /// The network name cannot be found.
 pub const BAD_NET_NAME = 67;
+
 /// The name limit for the local computer network adapter card was exceeded.
 pub const TOO_MANY_NAMES = 68;
+
 /// The network BIOS session limit was exceeded.
 pub const TOO_MANY_SESS = 69;
+
 /// The remote server has been paused or is in the process of being started.
 pub const SHARING_PAUSED = 70;
+
 /// No more connections can be made to this remote computer at this time because there are already as many connections as the computer can accept.
 pub const REQ_NOT_ACCEP = 71;
+
 /// The specified printer or disk device has been paused.
 pub const REDIR_PAUSED = 72;
+
 /// The file exists.
 pub const FILE_EXISTS = 80;
+
 /// The directory or file cannot be created.
 pub const CANNOT_MAKE = 82;
+
 /// Fail on INT 24.
 pub const FAIL_I24 = 83;
+
 /// Storage to process this request is not available.
 pub const OUT_OF_STRUCTURES = 84;
+
 /// The local device name is already in use.
 pub const ALREADY_ASSIGNED = 85;
+
 /// The specified network password is not correct.
 pub const INVALID_PASSWORD = 86;
+
 /// The parameter is incorrect.
 pub const INVALID_PARAMETER = 87;
+
 /// A write fault occurred on the network.
 pub const NET_WRITE_FAULT = 88;
+
 /// The system cannot start another process at this time.
 pub const NO_PROC_SLOTS = 89;
+
 /// Cannot create another system semaphore.
 pub const TOO_MANY_SEMAPHORES = 100;
+
 /// The exclusive semaphore is owned by another process.
 pub const EXCL_SEM_ALREADY_OWNED = 101;
+
 /// The semaphore is set and cannot be closed.
 pub const SEM_IS_SET = 102;
+
 /// The semaphore cannot be set again.
 pub const TOO_MANY_SEM_REQUESTS = 103;
+
 /// Cannot request exclusive semaphores at interrupt time.
 pub const INVALID_AT_INTERRUPT_TIME = 104;
+
 /// The previous ownership of this semaphore has ended.
 pub const SEM_OWNER_DIED = 105;
+
 /// Insert the diskette for drive %1.
 pub const SEM_USER_LIMIT = 106;
+
 /// The program stopped because an alternate diskette was not inserted.
 pub const DISK_CHANGE = 107;
+
 /// The disk is in use or locked by another process.
 pub const DRIVE_LOCKED = 108;
+
 /// The pipe has been ended.
 pub const BROKEN_PIPE = 109;
+
 /// The system cannot open the device or file specified.
 pub const OPEN_FAILED = 110;
+
 /// The file name is too long.
 pub const BUFFER_OVERFLOW = 111;
+
 /// There is not enough space on the disk.
 pub const DISK_FULL = 112;
+
 /// No more internal file identifiers available.
 pub const NO_MORE_SEARCH_HANDLES = 113;
+
 /// The target internal file identifier is incorrect.
 pub const INVALID_TARGET_HANDLE = 114;
+
 /// The IOCTL call made by the application program is not correct.
 pub const INVALID_CATEGORY = 117;
+
 /// The verify-on-write switch parameter value is not correct.
 pub const INVALID_VERIFY_SWITCH = 118;
+
 /// The system does not support the command requested.
 pub const BAD_DRIVER_LEVEL = 119;
+
 /// This function is not supported on this system.
 pub const CALL_NOT_IMPLEMENTED = 120;
+
 /// The semaphore timeout period has expired.
 pub const SEM_TIMEOUT = 121;
+
 /// The data area passed to a system call is too small.
 pub const INSUFFICIENT_BUFFER = 122;
+
 /// The filename, directory name, or volume label syntax is incorrect.
 pub const INVALID_NAME = 123;
+
 /// The system call level is not correct.
 pub const INVALID_LEVEL = 124;
+
 /// The disk has no volume label.
 pub const NO_VOLUME_LABEL = 125;
+
 /// The specified module could not be found.
 pub const MOD_NOT_FOUND = 126;
+
 /// The specified procedure could not be found.
 pub const PROC_NOT_FOUND = 127;
+
 /// There are no child processes to wait for.
 pub const WAIT_NO_CHILDREN = 128;
+
 /// The %1 application cannot be run in Win32 mode.
 pub const CHILD_NOT_COMPLETE = 129;
+
 /// Attempt to use a file handle to an open disk partition for an operation other than raw disk I/O.
 pub const DIRECT_ACCESS_HANDLE = 130;
+
 /// An attempt was made to move the file pointer before the beginning of the file.
 pub const NEGATIVE_SEEK = 131;
+
 /// The file pointer cannot be set on the specified device or file.
 pub const SEEK_ON_DEVICE = 132;
+
 /// A JOIN or SUBST command cannot be used for a drive that contains previously joined drives.
 pub const IS_JOIN_TARGET = 133;
+
 /// An attempt was made to use a JOIN or SUBST command on a drive that has already been joined.
 pub const IS_JOINED = 134;
+
 /// An attempt was made to use a JOIN or SUBST command on a drive that has already been substituted.
 pub const IS_SUBSTED = 135;
+
 /// The system tried to delete the JOIN of a drive that is not joined.
 pub const NOT_JOINED = 136;
+
 /// The system tried to delete the substitution of a drive that is not substituted.
 pub const NOT_SUBSTED = 137;
+
 /// The system tried to join a drive to a directory on a joined drive.
 pub const JOIN_TO_JOIN = 138;
+
 /// The system tried to substitute a drive to a directory on a substituted drive.
 pub const SUBST_TO_SUBST = 139;
+
 /// The system tried to join a drive to a directory on a substituted drive.
 pub const JOIN_TO_SUBST = 140;
+
 /// The system tried to SUBST a drive to a directory on a joined drive.
 pub const SUBST_TO_JOIN = 141;
+
 /// The system cannot perform a JOIN or SUBST at this time.
 pub const BUSY_DRIVE = 142;
+
 /// The system cannot join or substitute a drive to or for a directory on the same drive.
 pub const SAME_DRIVE = 143;
+
 /// The directory is not a subdirectory of the root directory.
 pub const DIR_NOT_ROOT = 144;
+
 /// The directory is not empty.
 pub const DIR_NOT_EMPTY = 145;
+
 /// The path specified is being used in a substitute.
 pub const IS_SUBST_PATH = 146;
+
 /// Not enough resources are available to process this command.
 pub const IS_JOIN_PATH = 147;
+
 /// The path specified cannot be used at this time.
 pub const PATH_BUSY = 148;
+
 /// An attempt was made to join or substitute a drive for which a directory on the drive is the target of a previous substitute.
 pub const IS_SUBST_TARGET = 149;
+
 /// System trace information was not specified in your CONFIG.SYS file, or tracing is disallowed.
 pub const SYSTEM_TRACE = 150;
+
 /// The number of specified semaphore events for DosMuxSemWait is not correct.
 pub const INVALID_EVENT_COUNT = 151;
+
 /// DosMuxSemWait did not execute; too many semaphores are already set.
 pub const TOO_MANY_MUXWAITERS = 152;
+
 /// The DosMuxSemWait list is not correct.
 pub const INVALID_LIST_FORMAT = 153;
+
 /// The volume label you entered exceeds the label character limit of the target file system.
 pub const LABEL_TOO_LONG = 154;
+
 /// Cannot create another thread.
 pub const TOO_MANY_TCBS = 155;
+
 /// The recipient process has refused the signal.
 pub const SIGNAL_REFUSED = 156;
+
 /// The segment is already discarded and cannot be locked.
 pub const DISCARDED = 157;
+
 /// The segment is already unlocked.
 pub const NOT_LOCKED = 158;
+
 /// The address for the thread ID is not correct.
 pub const BAD_THREADID_ADDR = 159;
+
 /// One or more arguments are not correct.
 pub const BAD_ARGUMENTS = 160;
+
 /// The specified path is invalid.
 pub const BAD_PATHNAME = 161;
+
 /// A signal is already pending.
 pub const SIGNAL_PENDING = 162;
+
 /// No more threads can be created in the system.
 pub const MAX_THRDS_REACHED = 164;
+
 /// Unable to lock a region of a file.
 pub const LOCK_FAILED = 167;
+
 /// The requested resource is in use.
 pub const BUSY = 170;
+
 /// Device's command support detection is in progress.
 pub const DEVICE_SUPPORT_IN_PROGRESS = 171;
+
 /// A lock request was not outstanding for the supplied cancel region.
 pub const CANCEL_VIOLATION = 173;
+
 /// The file system does not support atomic changes to the lock type.
 pub const ATOMIC_LOCKS_NOT_SUPPORTED = 174;
+
 /// The system detected a segment number that was not correct.
 pub const INVALID_SEGMENT_NUMBER = 180;
+
 /// The operating system cannot run %1.
 pub const INVALID_ORDINAL = 182;
+
 /// Cannot create a file when that file already exists.
 pub const ALREADY_EXISTS = 183;
+
 /// The flag passed is not correct.
 pub const INVALID_FLAG_NUMBER = 186;
+
 /// The specified system semaphore name was not found.
 pub const SEM_NOT_FOUND = 187;
+
 /// The operating system cannot run %1.
 pub const INVALID_STARTING_CODESEG = 188;
+
 /// The operating system cannot run %1.
 pub const INVALID_STACKSEG = 189;
+
 /// The operating system cannot run %1.
 pub const INVALID_MODULETYPE = 190;
+
 /// Cannot run %1 in Win32 mode.
 pub const INVALID_EXE_SIGNATURE = 191;
+
 /// The operating system cannot run %1.
 pub const EXE_MARKED_INVALID = 192;
+
 /// %1 is not a valid Win32 application.
 pub const BAD_EXE_FORMAT = 193;
+
 /// The operating system cannot run %1.
 pub const ITERATED_DATA_EXCEEDS_64k = 194;
+
 /// The operating system cannot run %1.
 pub const INVALID_MINALLOCSIZE = 195;
+
 /// The operating system cannot run this application program.
 pub const DYNLINK_FROM_INVALID_RING = 196;
+
 /// The operating system is not presently configured to run this application.
 pub const IOPL_NOT_ENABLED = 197;
+
 /// The operating system cannot run %1.
 pub const INVALID_SEGDPL = 198;
+
 /// The operating system cannot run this application program.
 pub const AUTODATASEG_EXCEEDS_64k = 199;
+
 /// The code segment cannot be greater than or equal to 64K.
 pub const RING2SEG_MUST_BE_MOVABLE = 200;
+
 /// The operating system cannot run %1.
 pub const RELOC_CHAIN_XEEDS_SEGLIM = 201;
+
 /// The operating system cannot run %1.
 pub const INFLOOP_IN_RELOC_CHAIN = 202;
+
 /// The system could not find the environment option that was entered.
 pub const ENVVAR_NOT_FOUND = 203;
+
 /// No process in the command subtree has a signal handler.
 pub const NO_SIGNAL_SENT = 205;
+
 /// The filename or extension is too long.
 pub const FILENAME_EXCED_RANGE = 206;
+
 /// The ring 2 stack is in use.
 pub const RING2_STACK_IN_USE = 207;
+
 /// The global filename characters, * or ?, are entered incorrectly or too many global filename characters are specified.
 pub const META_EXPANSION_TOO_LONG = 208;
+
 /// The signal being posted is not correct.
 pub const INVALID_SIGNAL_NUMBER = 209;
+
 /// The signal handler cannot be set.
 pub const THREAD_1_INACTIVE = 210;
+
 /// The segment is locked and cannot be reallocated.
 pub const LOCKED = 212;
+
 /// Too many dynamic-link modules are attached to this program or dynamic-link module.
 pub const TOO_MANY_MODULES = 214;
+
 /// Cannot nest calls to LoadModule.
 pub const NESTING_NOT_ALLOWED = 215;
+
 /// This version of %1 is not compatible with the version of Windows you're running. Check your computer's system information and then contact the software publisher.
 pub const EXE_MACHINE_TYPE_MISMATCH = 216;
+
 /// The image file %1 is signed, unable to modify.
 pub const EXE_CANNOT_MODIFY_SIGNED_BINARY = 217;
+
 /// The image file %1 is strong signed, unable to modify.
 pub const EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY = 218;
+
 /// This file is checked out or locked for editing by another user.
 pub const FILE_CHECKED_OUT = 220;
+
 /// The file must be checked out before saving changes.
 pub const CHECKOUT_REQUIRED = 221;
+
 /// The file type being saved or retrieved has been blocked.
 pub const BAD_FILE_TYPE = 222;
+
 /// The file size exceeds the limit allowed and cannot be saved.
 pub const FILE_TOO_LARGE = 223;
+
 /// Access Denied. Before opening files in this location, you must first add the web site to your trusted sites list, browse to the web site, and select the option to login automatically.
 pub const FORMS_AUTH_REQUIRED = 224;
+
 /// Operation did not complete successfully because the file contains a virus or potentially unwanted software.
 pub const VIRUS_INFECTED = 225;
+
 /// This file contains a virus or potentially unwanted software and cannot be opened. Due to the nature of this virus or potentially unwanted software, the file has been removed from this location.
 pub const VIRUS_DELETED = 226;
+
 /// The pipe is local.
 pub const PIPE_LOCAL = 229;
+
 /// The pipe state is invalid.
 pub const BAD_PIPE = 230;
+
 /// All pipe instances are busy.
 pub const PIPE_BUSY = 231;
+
 /// The pipe is being closed.
 pub const NO_DATA = 232;
+
 /// No process is on the other end of the pipe.
 pub const PIPE_NOT_CONNECTED = 233;
+
 /// More data is available.
 pub const MORE_DATA = 234;
+
 /// The session was canceled.
 pub const VC_DISCONNECTED = 240;
+
 /// The specified extended attribute name was invalid.
 pub const INVALID_EA_NAME = 254;
+
 /// The extended attributes are inconsistent.
 pub const EA_LIST_INCONSISTENT = 255;
+
 /// The wait operation timed out.
 pub const IMEOUT = 258;
+
 /// No more data is available.
 pub const NO_MORE_ITEMS = 259;
+
 /// The copy functions cannot be used.
 pub const CANNOT_COPY = 266;
+
 /// The directory name is invalid.
 pub const DIRECTORY = 267;
+
 /// The extended attributes did not fit in the buffer.
 pub const EAS_DIDNT_FIT = 275;
+
 /// The extended attribute file on the mounted file system is corrupt.
 pub const EA_FILE_CORRUPT = 276;
+
 /// The extended attribute table file is full.
 pub const EA_TABLE_FULL = 277;
+
 /// The specified extended attribute handle is invalid.
 pub const INVALID_EA_HANDLE = 278;
+
 /// The mounted file system does not support extended attributes.
 pub const EAS_NOT_SUPPORTED = 282;
+
 /// Attempt to release mutex not owned by caller.
 pub const NOT_OWNER = 288;
+
 /// Too many posts were made to a semaphore.
 pub const TOO_MANY_POSTS = 298;
+
 /// Only part of a ReadProcessMemory or WriteProcessMemory request was completed.
 pub const PARTIAL_COPY = 299;
+
 /// The oplock request is denied.
 pub const OPLOCK_NOT_GRANTED = 300;
+
 /// An invalid oplock acknowledgment was received by the system.
 pub const INVALID_OPLOCK_PROTOCOL = 301;
+
 /// The volume is too fragmented to complete this operation.
 pub const DISK_TOO_FRAGMENTED = 302;
+
 /// The file cannot be opened because it is in the process of being deleted.
 pub const DELETE_PENDING = 303;
+
 /// Short name settings may not be changed on this volume due to the global registry setting.
 pub const INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING = 304;
+
 /// Short names are not enabled on this volume.
 pub const SHORT_NAMES_NOT_ENABLED_ON_VOLUME = 305;
+
 /// The security stream for the given volume is in an inconsistent state. Please run CHKDSK on the volume.
 pub const SECURITY_STREAM_IS_INCONSISTENT = 306;
+
 /// A requested file lock operation cannot be processed due to an invalid byte range.
 pub const INVALID_LOCK_RANGE = 307;
+
 /// The subsystem needed to support the image type is not present.
 pub const IMAGE_SUBSYSTEM_NOT_PRESENT = 308;
+
 /// The specified file already has a notification GUID associated with it.
 pub const NOTIFICATION_GUID_ALREADY_DEFINED = 309;
+
 /// An invalid exception handler routine has been detected.
 pub const INVALID_EXCEPTION_HANDLER = 310;
+
 /// Duplicate privileges were specified for the token.
 pub const DUPLICATE_PRIVILEGES = 311;
+
 /// No ranges for the specified operation were able to be processed.
 pub const NO_RANGES_PROCESSED = 312;
+
 /// Operation is not allowed on a file system internal file.
 pub const NOT_ALLOWED_ON_SYSTEM_FILE = 313;
+
 /// The physical resources of this disk have been exhausted.
 pub const DISK_RESOURCES_EXHAUSTED = 314;
+
 /// The token representing the data is invalid.
 pub const INVALID_TOKEN = 315;
+
 /// The device does not support the command feature.
 pub const DEVICE_FEATURE_NOT_SUPPORTED = 316;
+
 /// The system cannot find message text for message number 0x%1 in the message file for %2.
 pub const MR_MID_NOT_FOUND = 317;
+
 /// The scope specified was not found.
 pub const SCOPE_NOT_FOUND = 318;
+
 /// The Central Access Policy specified is not defined on the target machine.
 pub const UNDEFINED_SCOPE = 319;
+
 /// The Central Access Policy obtained from Active Directory is invalid.
 pub const INVALID_CAP = 320;
+
 /// The device is unreachable.
 pub const DEVICE_UNREACHABLE = 321;
+
 /// The target device has insufficient resources to complete the operation.
 pub const DEVICE_NO_RESOURCES = 322;
+
 /// A data integrity checksum error occurred. Data in the file stream is corrupt.
 pub const DATA_CHECKSUM_ERROR = 323;
+
 /// An attempt was made to modify both a KERNEL and normal Extended Attribute (EA) in the same operation.
 pub const INTERMIXED_KERNEL_EA_OPERATION = 324;
+
 /// Device does not support file-level TRIM.
 pub const FILE_LEVEL_TRIM_NOT_SUPPORTED = 326;
+
 /// The command specified a data offset that does not align to the device's granularity/alignment.
 pub const OFFSET_ALIGNMENT_VIOLATION = 327;
+
 /// The command specified an invalid field in its parameter list.
 pub const INVALID_FIELD_IN_PARAMETER_LIST = 328;
+
 /// An operation is currently in progress with the device.
 pub const OPERATION_IN_PROGRESS = 329;
+
 /// An attempt was made to send down the command via an invalid path to the target device.
 pub const BAD_DEVICE_PATH = 330;
+
 /// The command specified a number of descriptors that exceeded the maximum supported by the device.
 pub const TOO_MANY_DESCRIPTORS = 331;
+
 /// Scrub is disabled on the specified file.
 pub const SCRUB_DATA_DISABLED = 332;
+
 /// The storage device does not provide redundancy.
 pub const NOT_REDUNDANT_STORAGE = 333;
+
 /// An operation is not supported on a resident file.
 pub const RESIDENT_FILE_NOT_SUPPORTED = 334;
+
 /// An operation is not supported on a compressed file.
 pub const COMPRESSED_FILE_NOT_SUPPORTED = 335;
+
 /// An operation is not supported on a directory.
 pub const DIRECTORY_NOT_SUPPORTED = 336;
+
 /// The specified copy of the requested data could not be read.
 pub const NOT_READ_FROM_COPY = 337;
+
 /// No action was taken as a system reboot is required.
 pub const FAIL_NOACTION_REBOOT = 350;
+
 /// The shutdown operation failed.
 pub const FAIL_SHUTDOWN = 351;
+
 /// The restart operation failed.
 pub const FAIL_RESTART = 352;
+
 /// The maximum number of sessions has been reached.
 pub const MAX_SESSIONS_REACHED = 353;
+
 /// The thread is already in background processing mode.
 pub const THREAD_MODE_ALREADY_BACKGROUND = 400;
+
 /// The thread is not in background processing mode.
 pub const THREAD_MODE_NOT_BACKGROUND = 401;
+
 /// The process is already in background processing mode.
 pub const PROCESS_MODE_ALREADY_BACKGROUND = 402;
+
 /// The process is not in background processing mode.
 pub const PROCESS_MODE_NOT_BACKGROUND = 403;
+
 /// Attempt to access invalid address.
 pub const INVALID_ADDRESS = 487;
+
 /// User profile cannot be loaded.
 pub const USER_PROFILE_LOAD = 500;
+
 /// Arithmetic result exceeded 32 bits.
 pub const ARITHMETIC_OVERFLOW = 534;
+
 /// There is a process on other end of the pipe.
 pub const PIPE_CONNECTED = 535;
+
 /// Waiting for a process to open the other end of the pipe.
 pub const PIPE_LISTENING = 536;
+
 /// Application verifier has found an error in the current process.
 pub const VERIFIER_STOP = 537;
+
 /// An error occurred in the ABIOS subsystem.
 pub const ABIOS_ERROR = 538;
+
 /// A warning occurred in the WX86 subsystem.
 pub const WX86_WARNING = 539;
+
 /// An error occurred in the WX86 subsystem.
 pub const WX86_ERROR = 540;
+
 /// An attempt was made to cancel or set a timer that has an associated APC and the subject thread is not the thread that originally set the timer with an associated APC routine.
 pub const TIMER_NOT_CANCELED = 541;
+
 /// Unwind exception code.
 pub const UNWIND = 542;
+
 /// An invalid or unaligned stack was encountered during an unwind operation.
 pub const BAD_STACK = 543;
+
 /// An invalid unwind target was encountered during an unwind operation.
 pub const INVALID_UNWIND_TARGET = 544;
+
 /// Invalid Object Attributes specified to NtCreatePort or invalid Port Attributes specified to NtConnectPort
 pub const INVALID_PORT_ATTRIBUTES = 545;
+
 /// Length of message passed to NtRequestPort or NtRequestWaitReplyPort was longer than the maximum message allowed by the port.
 pub const PORT_MESSAGE_TOO_LONG = 546;
+
 /// An attempt was made to lower a quota limit below the current usage.
 pub const INVALID_QUOTA_LOWER = 547;
+
 /// An attempt was made to attach to a device that was already attached to another device.
 pub const DEVICE_ALREADY_ATTACHED = 548;
+
 /// An attempt was made to execute an instruction at an unaligned address and the host system does not support unaligned instruction references.
 pub const INSTRUCTION_MISALIGNMENT = 549;
+
 /// Profiling not started.
 pub const PROFILING_NOT_STARTED = 550;
+
 /// Profiling not stopped.
 pub const PROFILING_NOT_STOPPED = 551;
+
 /// The passed ACL did not contain the minimum required information.
 pub const COULD_NOT_INTERPRET = 552;
+
 /// The number of active profiling objects is at the maximum and no more may be started.
 pub const PROFILING_AT_LIMIT = 553;
+
 /// Used to indicate that an operation cannot continue without blocking for I/O.
 pub const CANT_WAIT = 554;
+
 /// Indicates that a thread attempted to terminate itself by default (called NtTerminateThread with NULL) and it was the last thread in the current process.
 pub const CANT_TERMINATE_SELF = 555;
+
 /// If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter. In this case information is lost, however, the filter correctly handles the exception.
 pub const UNEXPECTED_MM_CREATE_ERR = 556;
+
 /// If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter. In this case information is lost, however, the filter correctly handles the exception.
 pub const UNEXPECTED_MM_MAP_ERROR = 557;
+
 /// If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter. In this case information is lost, however, the filter correctly handles the exception.
 pub const UNEXPECTED_MM_EXTEND_ERR = 558;
+
 /// A malformed function table was encountered during an unwind operation.
 pub const BAD_FUNCTION_TABLE = 559;
+
 /// Indicates that an attempt was made to assign protection to a file system file or directory and one of the SIDs in the security descriptor could not be translated into a GUID that could be stored by the file system. This causes the protection attempt to fail, which may cause a file creation attempt to fail.
 pub const NO_GUID_TRANSLATION = 560;
+
 /// Indicates that an attempt was made to grow an LDT by setting its size, or that the size was not an even number of selectors.
 pub const INVALID_LDT_SIZE = 561;
+
 /// Indicates that the starting value for the LDT information was not an integral multiple of the selector size.
 pub const INVALID_LDT_OFFSET = 563;
+
 /// Indicates that the user supplied an invalid descriptor when trying to set up Ldt descriptors.
 pub const INVALID_LDT_DESCRIPTOR = 564;
+
 /// Indicates a process has too many threads to perform the requested action. For example, assignment of a primary token may only be performed when a process has zero or one threads.
 pub const TOO_MANY_THREADS = 565;
+
 /// An attempt was made to operate on a thread within a specific process, but the thread specified is not in the process specified.
 pub const THREAD_NOT_IN_PROCESS = 566;
+
 /// Page file quota was exceeded.
 pub const PAGEFILE_QUOTA_EXCEEDED = 567;
+
 /// The Netlogon service cannot start because another Netlogon service running in the domain conflicts with the specified role.
 pub const LOGON_SERVER_CONFLICT = 568;
+
 /// The SAM database on a Windows Server is significantly out of synchronization with the copy on the Domain Controller. A complete synchronization is required.
 pub const SYNCHRONIZATION_REQUIRED = 569;
+
 /// The NtCreateFile API failed. This error should never be returned to an application, it is a place holder for the Windows Lan Manager Redirector to use in its internal error mapping routines.
 pub const NET_OPEN_FAILED = 570;
+
 /// {Privilege Failed} The I/O permissions for the process could not be changed.
 pub const IO_PRIVILEGE_FAILED = 571;
+
 /// {Application Exit by CTRL+C} The application terminated as a result of a CTRL+C.
 pub const CONTROL_C_EXIT = 572;
+
 /// {Missing System File} The required system file %hs is bad or missing.
 pub const MISSING_SYSTEMFILE = 573;
+
 /// {Application Error} The exception %s (0x%08lx) occurred in the application at location 0x%08lx.
 pub const UNHANDLED_EXCEPTION = 574;
+
 /// {Application Error} The application was unable to start correctly (0x%lx). Click OK to close the application.
 pub const APP_INIT_FAILURE = 575;
+
 /// {Unable to Create Paging File} The creation of the paging file %hs failed (%lx). The requested size was %ld.
 pub const PAGEFILE_CREATE_FAILED = 576;
+
 /// Windows cannot verify the digital signature for this file. A recent hardware or software change might have installed a file that is signed incorrectly or damaged, or that might be malicious software from an unknown source.
 pub const INVALID_IMAGE_HASH = 577;
+
 /// {No Paging File Specified} No paging file was specified in the system configuration.
 pub const NO_PAGEFILE = 578;
+
 /// {EXCEPTION} A real-mode application issued a floating-point instruction and floating-point hardware is not present.
 pub const ILLEGAL_FLOAT_CONTEXT = 579;
+
 /// An event pair synchronization operation was performed using the thread specific client/server event pair object, but no event pair object was associated with the thread.
 pub const NO_EVENT_PAIR = 580;
+
 /// A Windows Server has an incorrect configuration.
 pub const DOMAIN_CTRLR_CONFIG_ERROR = 581;
+
 /// An illegal character was encountered. For a multi-byte character set this includes a lead byte without a succeeding trail byte. For the Unicode character set this includes the characters 0xFFFF and 0xFFFE.
 pub const ILLEGAL_CHARACTER = 582;
+
 /// The Unicode character is not defined in the Unicode character set installed on the system.
 pub const UNDEFINED_CHARACTER = 583;
+
 /// The paging file cannot be created on a floppy diskette.
 pub const FLOPPY_VOLUME = 584;
+
 /// The system BIOS failed to connect a system interrupt to the device or bus for which the device is connected.
 pub const BIOS_FAILED_TO_CONNECT_INTERRUPT = 585;
+
 /// This operation is only allowed for the Primary Domain Controller of the domain.
 pub const BACKUP_CONTROLLER = 586;
+
 /// An attempt was made to acquire a mutant such that its maximum count would have been exceeded.
 pub const MUTANT_LIMIT_EXCEEDED = 587;
+
 /// A volume has been accessed for which a file system driver is required that has not yet been loaded.
 pub const FS_DRIVER_REQUIRED = 588;
+
 /// {Registry File Failure} The registry cannot load the hive (file): %hs or its log or alternate. It is corrupt, absent, or not writable.
 pub const CANNOT_LOAD_REGISTRY_FILE = 589;
+
 /// {Unexpected Failure in DebugActiveProcess} An unexpected failure occurred while processing a DebugActiveProcess API request. You may choose OK to terminate the process, or Cancel to ignore the error.
 pub const DEBUG_ATTACH_FAILED = 590;
+
 /// {Fatal System Error} The %hs system process terminated unexpectedly with a status of 0x%08x (0x%08x 0x%08x). The system has been shut down.
 pub const SYSTEM_PROCESS_TERMINATED = 591;
+
 /// {Data Not Accepted} The TDI client could not handle the data received during an indication.
 pub const DATA_NOT_ACCEPTED = 592;
+
 /// NTVDM encountered a hard error.
 pub const VDM_HARD_ERROR = 593;
+
 /// {Cancel Timeout} The driver %hs failed to complete a cancelled I/O request in the allotted time.
 pub const DRIVER_CANCEL_TIMEOUT = 594;
+
 /// {Reply Message Mismatch} An attempt was made to reply to an LPC message, but the thread specified by the client ID in the message was not waiting on that message.
 pub const REPLY_MESSAGE_MISMATCH = 595;
+
 /// {Delayed Write Failed} Windows was unable to save all the data for the file %hs. The data has been lost. This error may be caused by a failure of your computer hardware or network connection. Please try to save this file elsewhere.
 pub const LOST_WRITEBEHIND_DATA = 596;
+
 /// The parameter(s) passed to the server in the client/server shared memory window were invalid. Too much data may have been put in the shared memory window.
 pub const CLIENT_SERVER_PARAMETERS_INVALID = 597;
+
 /// The stream is not a tiny stream.
 pub const NOT_TINY_STREAM = 598;
+
 /// The request must be handled by the stack overflow code.
 pub const STACK_OVERFLOW_READ = 599;
+
 /// Internal OFS status codes indicating how an allocation operation is handled. Either it is retried after the containing onode is moved or the extent stream is converted to a large stream.
 pub const CONVERT_TO_LARGE = 600;
+
 /// The attempt to find the object found an object matching by ID on the volume but it is out of the scope of the handle used for the operation.
 pub const FOUND_OUT_OF_SCOPE = 601;
+
 /// The bucket array must be grown. Retry transaction after doing so.
 pub const ALLOCATE_BUCKET = 602;
+
 /// The user/kernel marshalling buffer has overflowed.
 pub const MARSHALL_OVERFLOW = 603;
+
 /// The supplied variant structure contains invalid data.
 pub const INVALID_VARIANT = 604;
+
 /// The specified buffer contains ill-formed data.
 pub const BAD_COMPRESSION_BUFFER = 605;
+
 /// {Audit Failed} An attempt to generate a security audit failed.
 pub const AUDIT_FAILED = 606;
+
 /// The timer resolution was not previously set by the current process.
 pub const TIMER_RESOLUTION_NOT_SET = 607;
+
 /// There is insufficient account information to log you on.
 pub const INSUFFICIENT_LOGON_INFO = 608;
+
 /// {Invalid DLL Entrypoint} The dynamic link library %hs is not written correctly. The stack pointer has been left in an inconsistent state. The entrypoint should be declared as WINAPI or STDCALL. Select YES to fail the DLL load. Select NO to continue execution. Selecting NO may cause the application to operate incorrectly.
 pub const BAD_DLL_ENTRYPOINT = 609;
+
 /// {Invalid Service Callback Entrypoint} The %hs service is not written correctly. The stack pointer has been left in an inconsistent state. The callback entrypoint should be declared as WINAPI or STDCALL. Selecting OK will cause the service to continue operation. However, the service process may operate incorrectly.
 pub const BAD_SERVICE_ENTRYPOINT = 610;
+
 /// There is an IP address conflict with another system on the network.
 pub const IP_ADDRESS_CONFLICT1 = 611;
+
 /// There is an IP address conflict with another system on the network.
 pub const IP_ADDRESS_CONFLICT2 = 612;
+
 /// {Low On Registry Space} The system has reached the maximum size allowed for the system part of the registry. Additional storage requests will be ignored.
 pub const REGISTRY_QUOTA_LIMIT = 613;
+
 /// A callback return system service cannot be executed when no callback is active.
 pub const NO_CALLBACK_ACTIVE = 614;
+
 /// The password provided is too short to meet the policy of your user account. Please choose a longer password.
 pub const PWD_TOO_SHORT = 615;
+
 /// The policy of your user account does not allow you to change passwords too frequently. This is done to prevent users from changing back to a familiar, but potentially discovered, password. If you feel your password has been compromised then please contact your administrator immediately to have a new one assigned.
 pub const PWD_TOO_RECENT = 616;
+
 /// You have attempted to change your password to one that you have used in the past. The policy of your user account does not allow this. Please select a password that you have not previously used.
 pub const PWD_HISTORY_CONFLICT = 617;
+
 /// The specified compression format is unsupported.
 pub const UNSUPPORTED_COMPRESSION = 618;
+
 /// The specified hardware profile configuration is invalid.
 pub const INVALID_HW_PROFILE = 619;
+
 /// The specified Plug and Play registry device path is invalid.
 pub const INVALID_PLUGPLAY_DEVICE_PATH = 620;
+
 /// The specified quota list is internally inconsistent with its descriptor.
 pub const QUOTA_LIST_INCONSISTENT = 621;
+
 /// {Windows Evaluation Notification} The evaluation period for this installation of Windows has expired. This system will shutdown in 1 hour. To restore access to this installation of Windows, please upgrade this installation using a licensed distribution of this product.
 pub const EVALUATION_EXPIRATION = 622;
+
 /// {Illegal System DLL Relocation} The system DLL %hs was relocated in memory. The application will not run properly. The relocation occurred because the DLL %hs occupied an address range reserved for Windows system DLLs. The vendor supplying the DLL should be contacted for a new DLL.
 pub const ILLEGAL_DLL_RELOCATION = 623;
+
 /// {DLL Initialization Failed} The application failed to initialize because the window station is shutting down.
 pub const DLL_INIT_FAILED_LOGOFF = 624;
+
 /// The validation process needs to continue on to the next step.
 pub const VALIDATE_CONTINUE = 625;
+
 /// There are no more matches for the current index enumeration.
 pub const NO_MORE_MATCHES = 626;
+
 /// The range could not be added to the range list because of a conflict.
 pub const RANGE_LIST_CONFLICT = 627;
+
 /// The server process is running under a SID different than that required by client.
 pub const SERVER_SID_MISMATCH = 628;
+
 /// A group marked use for deny only cannot be enabled.
 pub const CANT_ENABLE_DENY_ONLY = 629;
+
 /// {EXCEPTION} Multiple floating point faults.
 pub const FLOAT_MULTIPLE_FAULTS = 630;
+
 /// {EXCEPTION} Multiple floating point traps.
 pub const FLOAT_MULTIPLE_TRAPS = 631;
+
 /// The requested interface is not supported.
 pub const NOINTERFACE = 632;
+
 /// {System Standby Failed} The driver %hs does not support standby mode. Updating this driver may allow the system to go to standby mode.
 pub const DRIVER_FAILED_SLEEP = 633;
+
 /// The system file %1 has become corrupt and has been replaced.
 pub const CORRUPT_SYSTEM_FILE = 634;
+
 /// {Virtual Memory Minimum Too Low} Your system is low on virtual memory. Windows is increasing the size of your virtual memory paging file. During this process, memory requests for some applications may be denied. For more information, see Help.
 pub const COMMITMENT_MINIMUM = 635;
+
 /// A device was removed so enumeration must be restarted.
 pub const PNP_RESTART_ENUMERATION = 636;
+
 /// {Fatal System Error} The system image %s is not properly signed. The file has been replaced with the signed file. The system has been shut down.
 pub const SYSTEM_IMAGE_BAD_SIGNATURE = 637;
+
 /// Device will not start without a reboot.
 pub const PNP_REBOOT_REQUIRED = 638;
+
 /// There is not enough power to complete the requested operation.
 pub const INSUFFICIENT_POWER = 639;
+
 /// ERROR_MULTIPLE_FAULT_VIOLATION
 pub const MULTIPLE_FAULT_VIOLATION = 640;
+
 /// The system is in the process of shutting down.
 pub const SYSTEM_SHUTDOWN = 641;
+
 /// An attempt to remove a processes DebugPort was made, but a port was not already associated with the process.
 pub const PORT_NOT_SET = 642;
+
 /// This version of Windows is not compatible with the behavior version of directory forest, domain or domain controller.
 pub const DS_VERSION_CHECK_FAILURE = 643;
+
 /// The specified range could not be found in the range list.
 pub const RANGE_NOT_FOUND = 644;
+
 /// The driver was not loaded because the system is booting into safe mode.
 pub const NOT_SAFE_MODE_DRIVER = 646;
+
 /// The driver was not loaded because it failed its initialization call.
 pub const FAILED_DRIVER_ENTRY = 647;
+
 /// The "%hs" encountered an error while applying power or reading the device configuration. This may be caused by a failure of your hardware or by a poor connection.
 pub const DEVICE_ENUMERATION_ERROR = 648;
+
 /// The create operation failed because the name contained at least one mount point which resolves to a volume to which the specified device object is not attached.
 pub const MOUNT_POINT_NOT_RESOLVED = 649;
+
 /// The device object parameter is either not a valid device object or is not attached to the volume specified by the file name.
 pub const INVALID_DEVICE_OBJECT_PARAMETER = 650;
+
 /// A Machine Check Error has occurred. Please check the system eventlog for additional information.
 pub const MCA_OCCURED = 651;
+
 /// There was error [%2] processing the driver database.
 pub const DRIVER_DATABASE_ERROR = 652;
+
 /// System hive size has exceeded its limit.
 pub const SYSTEM_HIVE_TOO_LARGE = 653;
+
 /// The driver could not be loaded because a previous version of the driver is still in memory.
 pub const DRIVER_FAILED_PRIOR_UNLOAD = 654;
+
 /// {Volume Shadow Copy Service} Please wait while the Volume Shadow Copy Service prepares volume %hs for hibernation.
 pub const VOLSNAP_PREPARE_HIBERNATE = 655;
+
 /// The system has failed to hibernate (The error code is %hs). Hibernation will be disabled until the system is restarted.
 pub const HIBERNATION_FAILURE = 656;
+
 /// The password provided is too long to meet the policy of your user account. Please choose a shorter password.
 pub const PWD_TOO_LONG = 657;
+
 /// The requested operation could not be completed due to a file system limitation.
 pub const FILE_SYSTEM_LIMITATION = 665;
+
 /// An assertion failure has occurred.
 pub const ASSERTION_FAILURE = 668;
+
 /// An error occurred in the ACPI subsystem.
 pub const ACPI_ERROR = 669;
+
 /// WOW Assertion Error.
 pub const WOW_ASSERTION = 670;
+
 /// A device is missing in the system BIOS MPS table. This device will not be used. Please contact your system vendor for system BIOS update.
 pub const PNP_BAD_MPS_TABLE = 671;
+
 /// A translator failed to translate resources.
 pub const PNP_TRANSLATION_FAILED = 672;
+
 /// A IRQ translator failed to translate resources.
 pub const PNP_IRQ_TRANSLATION_FAILED = 673;
+
 /// Driver %2 returned invalid ID for a child device (%3).
 pub const PNP_INVALID_ID = 674;
+
 /// {Kernel Debugger Awakened} the system debugger was awakened by an interrupt.
 pub const WAKE_SYSTEM_DEBUGGER = 675;
+
 /// {Handles Closed} Handles to objects have been automatically closed as a result of the requested operation.
 pub const HANDLES_CLOSED = 676;
+
 /// {Too Much Information} The specified access control list (ACL) contained more information than was expected.
 pub const EXTRANEOUS_INFORMATION = 677;
+
 /// This warning level status indicates that the transaction state already exists for the registry sub-tree, but that a transaction commit was previously aborted. The commit has NOT been completed, but has not been rolled back either (so it may still be committed if desired).
 pub const RXACT_COMMIT_NECESSARY = 678;
+
 /// {Media Changed} The media may have changed.
 pub const MEDIA_CHECK = 679;
+
 /// {GUID Substitution} During the translation of a global identifier (GUID) to a Windows security ID (SID), no administratively-defined GUID prefix was found. A substitute prefix was used, which will not compromise system security. However, this may provide a more restrictive access than intended.
 pub const GUID_SUBSTITUTION_MADE = 680;
+
 /// The create operation stopped after reaching a symbolic link.
 pub const STOPPED_ON_SYMLINK = 681;
+
 /// A long jump has been executed.
 pub const LONGJUMP = 682;
+
 /// The Plug and Play query operation was not successful.
 pub const PLUGPLAY_QUERY_VETOED = 683;
+
 /// A frame consolidation has been executed.
 pub const UNWIND_CONSOLIDATE = 684;
+
 /// {Registry Hive Recovered} Registry hive (file): %hs was corrupted and it has been recovered. Some data might have been lost.
 pub const REGISTRY_HIVE_RECOVERED = 685;
+
 /// The application is attempting to run executable code from the module %hs. This may be insecure. An alternative, %hs, is available. Should the application use the secure module %hs?
 pub const DLL_MIGHT_BE_INSECURE = 686;
+
 /// The application is loading executable code from the module %hs. This is secure, but may be incompatible with previous releases of the operating system. An alternative, %hs, is available. Should the application use the secure module %hs?
 pub const DLL_MIGHT_BE_INCOMPATIBLE = 687;
+
 /// Debugger did not handle the exception.
 pub const DBG_EXCEPTION_NOT_HANDLED = 688;
+
 /// Debugger will reply later.
 pub const DBG_REPLY_LATER = 689;
+
 /// Debugger cannot provide handle.
 pub const DBG_UNABLE_TO_PROVIDE_HANDLE = 690;
+
 /// Debugger terminated thread.
 pub const DBG_TERMINATE_THREAD = 691;
+
 /// Debugger terminated process.
 pub const DBG_TERMINATE_PROCESS = 692;
+
 /// Debugger got control C.
 pub const DBG_CONTROL_C = 693;
+
 /// Debugger printed exception on control C.
 pub const DBG_PRINTEXCEPTION_C = 694;
+
 /// Debugger received RIP exception.
 pub const DBG_RIPEXCEPTION = 695;
+
 /// Debugger received control break.
 pub const DBG_CONTROL_BREAK = 696;
+
 /// Debugger command communication exception.
 pub const DBG_COMMAND_EXCEPTION = 697;
+
 /// {Object Exists} An attempt was made to create an object and the object name already existed.
 pub const OBJECT_NAME_EXISTS = 698;
+
 /// {Thread Suspended} A thread termination occurred while the thread was suspended. The thread was resumed, and termination proceeded.
 pub const THREAD_WAS_SUSPENDED = 699;
+
 /// {Image Relocated} An image file could not be mapped at the address specified in the image file. Local fixups must be performed on this image.
 pub const IMAGE_NOT_AT_BASE = 700;
+
 /// This informational level status indicates that a specified registry sub-tree transaction state did not yet exist and had to be created.
 pub const RXACT_STATE_CREATED = 701;
+
 /// {Segment Load} A virtual DOS machine (VDM) is loading, unloading, or moving an MS-DOS or Win16 program segment image. An exception is raised so a debugger can load, unload or track symbols and breakpoints within these 16-bit segments.
 pub const SEGMENT_NOTIFICATION = 702;
+
 /// {Invalid Current Directory} The process cannot switch to the startup current directory %hs. Select OK to set current directory to %hs, or select CANCEL to exit.
 pub const BAD_CURRENT_DIRECTORY = 703;
+
 /// {Redundant Read} To satisfy a read request, the NT fault-tolerant file system successfully read the requested data from a redundant copy. This was done because the file system encountered a failure on a member of the fault-tolerant volume, but was unable to reassign the failing area of the device.
 pub const FT_READ_RECOVERY_FROM_BACKUP = 704;
+
 /// {Redundant Write} To satisfy a write request, the NT fault-tolerant file system successfully wrote a redundant copy of the information. This was done because the file system encountered a failure on a member of the fault-tolerant volume, but was not able to reassign the failing area of the device.
 pub const FT_WRITE_RECOVERY = 705;
+
 /// {Machine Type Mismatch} The image file %hs is valid, but is for a machine type other than the current machine. Select OK to continue, or CANCEL to fail the DLL load.
 pub const IMAGE_MACHINE_TYPE_MISMATCH = 706;
+
 /// {Partial Data Received} The network transport returned partial data to its client. The remaining data will be sent later.
 pub const RECEIVE_PARTIAL = 707;
+
 /// {Expedited Data Received} The network transport returned data to its client that was marked as expedited by the remote system.
 pub const RECEIVE_EXPEDITED = 708;
+
 /// {Partial Expedited Data Received} The network transport returned partial data to its client and this data was marked as expedited by the remote system. The remaining data will be sent later.
 pub const RECEIVE_PARTIAL_EXPEDITED = 709;
+
 /// {TDI Event Done} The TDI indication has completed successfully.
 pub const EVENT_DONE = 710;
+
 /// {TDI Event Pending} The TDI indication has entered the pending state.
 pub const EVENT_PENDING = 711;
+
 /// Checking file system on %wZ.
 pub const CHECKING_FILE_SYSTEM = 712;
+
 /// {Fatal Application Exit} %hs.
 pub const FATAL_APP_EXIT = 713;
+
 /// The specified registry key is referenced by a predefined handle.
 pub const PREDEFINED_HANDLE = 714;
+
 /// {Page Unlocked} The page protection of a locked page was changed to 'No Access' and the page was unlocked from memory and from the process.
 pub const WAS_UNLOCKED = 715;
+
 /// %hs
 pub const SERVICE_NOTIFICATION = 716;
+
 /// {Page Locked} One of the pages to lock was already locked.
 pub const WAS_LOCKED = 717;
+
 /// Application popup: %1 : %2
 pub const LOG_HARD_ERROR = 718;
+
 /// ERROR_ALREADY_WIN32
 pub const ALREADY_WIN32 = 719;
+
 /// {Machine Type Mismatch} The image file %hs is valid, but is for a machine type other than the current machine.
 pub const IMAGE_MACHINE_TYPE_MISMATCH_EXE = 720;
+
 /// A yield execution was performed and no thread was available to run.
 pub const NO_YIELD_PERFORMED = 721;
+
 /// The resumable flag to a timer API was ignored.
 pub const TIMER_RESUME_IGNORED = 722;
+
 /// The arbiter has deferred arbitration of these resources to its parent.
 pub const ARBITRATION_UNHANDLED = 723;
+
 /// The inserted CardBus device cannot be started because of a configuration error on "%hs".
 pub const CARDBUS_NOT_SUPPORTED = 724;
+
 /// The CPUs in this multiprocessor system are not all the same revision level. To use all processors the operating system restricts itself to the features of the least capable processor in the system. Should problems occur with this system, contact the CPU manufacturer to see if this mix of processors is supported.
 pub const MP_PROCESSOR_MISMATCH = 725;
+
 /// The system was put into hibernation.
 pub const HIBERNATED = 726;
+
 /// The system was resumed from hibernation.
 pub const RESUME_HIBERNATION = 727;
+
 /// Windows has detected that the system firmware (BIOS) was updated [previous firmware date = %2, current firmware date %3].
 pub const FIRMWARE_UPDATED = 728;
+
 /// A device driver is leaking locked I/O pages causing system degradation. The system has automatically enabled tracking code in order to try and catch the culprit.
 pub const DRIVERS_LEAKING_LOCKED_PAGES = 729;
+
 /// The system has awoken.
 pub const WAKE_SYSTEM = 730;
+
 /// ERROR_WAIT_1
 pub const WAIT_1 = 731;
+
 /// ERROR_WAIT_2
 pub const WAIT_2 = 732;
+
 /// ERROR_WAIT_3
 pub const WAIT_3 = 733;
+
 /// ERROR_WAIT_63
 pub const WAIT_63 = 734;
+
 /// ERROR_ABANDONED_WAIT_0
 pub const ABANDONED_WAIT_0 = 735;
+
 /// ERROR_ABANDONED_WAIT_63
 pub const ABANDONED_WAIT_63 = 736;
+
 /// ERROR_USER_APC
 pub const USER_APC = 737;
+
 /// ERROR_KERNEL_APC
 pub const KERNEL_APC = 738;
+
 /// ERROR_ALERTED
 pub const ALERTED = 739;
+
 /// The requested operation requires elevation.
 pub const ELEVATION_REQUIRED = 740;
+
 /// A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link.
 pub const REPARSE = 741;
+
 /// An open/create operation completed while an oplock break is underway.
 pub const OPLOCK_BREAK_IN_PROGRESS = 742;
+
 /// A new volume has been mounted by a file system.
 pub const VOLUME_MOUNTED = 743;
+
 /// This success level status indicates that the transaction state already exists for the registry sub-tree, but that a transaction commit was previously aborted. The commit has now been completed.
 pub const RXACT_COMMITTED = 744;
+
 /// This indicates that a notify change request has been completed due to closing the handle which made the notify change request.
 pub const NOTIFY_CLEANUP = 745;
+
 /// {Connect Failure on Primary Transport} An attempt was made to connect to the remote server %hs on the primary transport, but the connection failed. The computer WAS able to connect on a secondary transport.
 pub const PRIMARY_TRANSPORT_CONNECT_FAILED = 746;
+
 /// Page fault was a transition fault.
 pub const PAGE_FAULT_TRANSITION = 747;
+
 /// Page fault was a demand zero fault.
 pub const PAGE_FAULT_DEMAND_ZERO = 748;
+
 /// Page fault was a demand zero fault.
 pub const PAGE_FAULT_COPY_ON_WRITE = 749;
+
 /// Page fault was a demand zero fault.
 pub const PAGE_FAULT_GUARD_PAGE = 750;
+
 /// Page fault was satisfied by reading from a secondary storage device.
 pub const PAGE_FAULT_PAGING_FILE = 751;
+
 /// Cached page was locked during operation.
 pub const CACHE_PAGE_LOCKED = 752;
+
 /// Crash dump exists in paging file.
 pub const CRASH_DUMP = 753;
+
 /// Specified buffer contains all zeros.
 pub const BUFFER_ALL_ZEROS = 754;
+
 /// A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link.
 pub const REPARSE_OBJECT = 755;
+
 /// The device has succeeded a query-stop and its resource requirements have changed.
 pub const RESOURCE_REQUIREMENTS_CHANGED = 756;
+
 /// The translator has translated these resources into the global space and no further translations should be performed.
 pub const TRANSLATION_COMPLETE = 757;
+
 /// A process being terminated has no threads to terminate.
 pub const NOTHING_TO_TERMINATE = 758;
+
 /// The specified process is not part of a job.
 pub const PROCESS_NOT_IN_JOB = 759;
+
 /// The specified process is part of a job.
 pub const PROCESS_IN_JOB = 760;
+
 /// {Volume Shadow Copy Service} The system is now ready for hibernation.
 pub const VOLSNAP_HIBERNATE_READY = 761;
+
 /// A file system or file system filter driver has successfully completed an FsFilter operation.
 pub const FSFILTER_OP_COMPLETED_SUCCESSFULLY = 762;
+
 /// The specified interrupt vector was already connected.
 pub const INTERRUPT_VECTOR_ALREADY_CONNECTED = 763;
+
 /// The specified interrupt vector is still connected.
 pub const INTERRUPT_STILL_CONNECTED = 764;
+
 /// An operation is blocked waiting for an oplock.
 pub const WAIT_FOR_OPLOCK = 765;
+
 /// Debugger handled exception.
 pub const DBG_EXCEPTION_HANDLED = 766;
+
 /// Debugger continued.
 pub const DBG_CONTINUE = 767;
+
 /// An exception occurred in a user mode callback and the kernel callback frame should be removed.
 pub const CALLBACK_POP_STACK = 768;
+
 /// Compression is disabled for this volume.
 pub const COMPRESSION_DISABLED = 769;
+
 /// The data provider cannot fetch backwards through a result set.
 pub const CANTFETCHBACKWARDS = 770;
+
 /// The data provider cannot scroll backwards through a result set.
 pub const CANTSCROLLBACKWARDS = 771;
+
 /// The data provider requires that previously fetched data is released before asking for more data.
 pub const ROWSNOTRELEASED = 772;
+
 /// The data provider was not able to interpret the flags set for a column binding in an accessor.
 pub const BAD_ACCESSOR_FLAGS = 773;
+
 /// One or more errors occurred while processing the request.
 pub const ERRORS_ENCOUNTERED = 774;
+
 /// The implementation is not capable of performing the request.
 pub const NOT_CAPABLE = 775;
+
 /// The client of a component requested an operation which is not valid given the state of the component instance.
 pub const REQUEST_OUT_OF_SEQUENCE = 776;
+
 /// A version number could not be parsed.
 pub const VERSION_PARSE_ERROR = 777;
+
 /// The iterator's start position is invalid.
 pub const BADSTARTPOSITION = 778;
+
 /// The hardware has reported an uncorrectable memory error.
 pub const MEMORY_HARDWARE = 779;
+
 /// The attempted operation required self healing to be enabled.
 pub const DISK_REPAIR_DISABLED = 780;
+
 /// The Desktop heap encountered an error while allocating session memory. There is more information in the system event log.
 pub const INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE = 781;
+
 /// The system power state is transitioning from %2 to %3.
 pub const SYSTEM_POWERSTATE_TRANSITION = 782;
+
 /// The system power state is transitioning from %2 to %3 but could enter %4.
 pub const SYSTEM_POWERSTATE_COMPLEX_TRANSITION = 783;
+
 /// A thread is getting dispatched with MCA EXCEPTION because of MCA.
 pub const MCA_EXCEPTION = 784;
+
 /// Access to %1 is monitored by policy rule %2.
 pub const ACCESS_AUDIT_BY_POLICY = 785;
+
 /// Access to %1 has been restricted by your Administrator by policy rule %2.
 pub const ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY = 786;
+
 /// A valid hibernation file has been invalidated and should be abandoned.
 pub const ABANDON_HIBERFILE = 787;
+
 /// {Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost. This error may be caused by network connectivity issues. Please try to save this file elsewhere.
 pub const LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED = 788;
+
 /// {Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost. This error was returned by the server on which the file exists. Please try to save this file elsewhere.
 pub const LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR = 789;
+
 /// {Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost. This error may be caused if the device has been removed or the media is write-protected.
 pub const LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR = 790;
+
 /// The resources required for this device conflict with the MCFG table.
 pub const BAD_MCFG_TABLE = 791;
+
 /// The volume repair could not be performed while it is online. Please schedule to take the volume offline so that it can be repaired.
 pub const DISK_REPAIR_REDIRECTED = 792;
+
 /// The volume repair was not successful.
 pub const DISK_REPAIR_UNSUCCESSFUL = 793;
+
 /// One of the volume corruption logs is full. Further corruptions that may be detected won't be logged.
 pub const CORRUPT_LOG_OVERFULL = 794;
+
 /// One of the volume corruption logs is internally corrupted and needs to be recreated. The volume may contain undetected corruptions and must be scanned.
 pub const CORRUPT_LOG_CORRUPTED = 795;
+
 /// One of the volume corruption logs is unavailable for being operated on.
 pub const CORRUPT_LOG_UNAVAILABLE = 796;
+
 /// One of the volume corruption logs was deleted while still having corruption records in them. The volume contains detected corruptions and must be scanned.
 pub const CORRUPT_LOG_DELETED_FULL = 797;
+
 /// One of the volume corruption logs was cleared by chkdsk and no longer contains real corruptions.
 pub const CORRUPT_LOG_CLEARED = 798;
+
 /// Orphaned files exist on the volume but could not be recovered because no more new names could be created in the recovery directory. Files must be moved from the recovery directory.
 pub const ORPHAN_NAME_EXHAUSTED = 799;
+
 /// The oplock that was associated with this handle is now associated with a different handle.
 pub const OPLOCK_SWITCHED_TO_NEW_HANDLE = 800;
+
 /// An oplock of the requested level cannot be granted. An oplock of a lower level may be available.
 pub const CANNOT_GRANT_REQUESTED_OPLOCK = 801;
+
 /// The operation did not complete successfully because it would cause an oplock to be broken. The caller has requested that existing oplocks not be broken.
 pub const CANNOT_BREAK_OPLOCK = 802;
+
 /// The handle with which this oplock was associated has been closed. The oplock is now broken.
 pub const OPLOCK_HANDLE_CLOSED = 803;
+
 /// The specified access control entry (ACE) does not contain a condition.
 pub const NO_ACE_CONDITION = 804;
+
 /// The specified access control entry (ACE) contains an invalid condition.
 pub const INVALID_ACE_CONDITION = 805;
+
 /// Access to the specified file handle has been revoked.
 pub const FILE_HANDLE_REVOKED = 806;
+
 /// An image file was mapped at a different address from the one specified in the image file but fixups will still be automatically performed on the image.
 pub const IMAGE_AT_DIFFERENT_BASE = 807;
+
 /// Access to the extended attribute was denied.
 pub const EA_ACCESS_DENIED = 994;
+
 /// The I/O operation has been aborted because of either a thread exit or an application request.
 pub const OPERATION_ABORTED = 995;
+
 /// Overlapped I/O event is not in a signaled state.
 pub const IO_INCOMPLETE = 996;
+
 /// Overlapped I/O operation is in progress.
 pub const IO_PENDING = 997;
+
 /// Invalid access to memory location.
 pub const NOACCESS = 998;
+
 /// Error performing inpage operation.
 pub const SWAPERROR = 999;
+
 /// Recursion too deep; the stack overflowed.
 pub const STACK_OVERFLOW = 1001;
+
 /// The window cannot act on the sent message.
 pub const INVALID_MESSAGE = 1002;
+
 /// Cannot complete this function.
 pub const CAN_NOT_COMPLETE = 1003;
+
 /// Invalid flags.
 pub const INVALID_FLAGS = 1004;
+
 /// The volume does not contain a recognized file system. Please make sure that all required file system drivers are loaded and that the volume is not corrupted.
 pub const UNRECOGNIZED_VOLUME = 1005;
+
 /// The volume for a file has been externally altered so that the opened file is no longer valid.
 pub const FILE_INVALID = 1006;
+
 /// The requested operation cannot be performed in full-screen mode.
 pub const FULLSCREEN_MODE = 1007;
+
 /// An attempt was made to reference a token that does not exist.
 pub const NO_TOKEN = 1008;
+
 /// The configuration registry database is corrupt.
 pub const BADDB = 1009;
+
 /// The configuration registry key is invalid.
 pub const BADKEY = 1010;
+
 /// The configuration registry key could not be opened.
 pub const CANTOPEN = 1011;
+
 /// The configuration registry key could not be read.
 pub const CANTREAD = 1012;
+
 /// The configuration registry key could not be written.
 pub const CANTWRITE = 1013;
+
 /// One of the files in the registry database had to be recovered by use of a log or alternate copy. The recovery was successful.
 pub const REGISTRY_RECOVERED = 1014;
+
 /// The registry is corrupted. The structure of one of the files containing registry data is corrupted, or the system's memory image of the file is corrupted, or the file could not be recovered because the alternate copy or log was absent or corrupted.
 pub const REGISTRY_CORRUPT = 1015;
+
 /// An I/O operation initiated by the registry failed unrecoverably. The registry could not read in, or write out, or flush, one of the files that contain the system's image of the registry.
 pub const REGISTRY_IO_FAILED = 1016;
+
 /// The system has attempted to load or restore a file into the registry, but the specified file is not in a registry file format.
 pub const NOT_REGISTRY_FILE = 1017;
+
 /// Illegal operation attempted on a registry key that has been marked for deletion.
 pub const KEY_DELETED = 1018;
+
 /// System could not allocate the required space in a registry log.
 pub const NO_LOG_SPACE = 1019;
+
 /// Cannot create a symbolic link in a registry key that already has subkeys or values.
 pub const KEY_HAS_CHILDREN = 1020;
+
 /// Cannot create a stable subkey under a volatile parent key.
 pub const CHILD_MUST_BE_VOLATILE = 1021;
+
 /// A notify change request is being completed and the information is not being returned in the caller's buffer. The caller now needs to enumerate the files to find the changes.
 pub const NOTIFY_ENUM_DIR = 1022;
+
 /// A stop control has been sent to a service that other running services are dependent on.
 pub const DEPENDENT_SERVICES_RUNNING = 1051;
+
 /// The requested control is not valid for this service.
 pub const INVALID_SERVICE_CONTROL = 1052;
+
 /// The service did not respond to the start or control request in a timely fashion.
 pub const SERVICE_REQUEST_TIMEOUT = 1053;
+
 /// A thread could not be created for the service.
 pub const SERVICE_NO_THREAD = 1054;
+
 /// The service database is locked.
 pub const SERVICE_DATABASE_LOCKED = 1055;
+
 /// An instance of the service is already running.
 pub const SERVICE_ALREADY_RUNNING = 1056;
+
 /// The account name is invalid or does not exist, or the password is invalid for the account name specified.
 pub const INVALID_SERVICE_ACCOUNT = 1057;
+
 /// The service cannot be started, either because it is disabled or because it has no enabled devices associated with it.
 pub const SERVICE_DISABLED = 1058;
+
 /// Circular service dependency was specified.
 pub const CIRCULAR_DEPENDENCY = 1059;
+
 /// The specified service does not exist as an installed service.
 pub const SERVICE_DOES_NOT_EXIST = 1060;
+
 /// The service cannot accept control messages at this time.
 pub const SERVICE_CANNOT_ACCEPT_CTRL = 1061;
+
 /// The service has not been started.
 pub const SERVICE_NOT_ACTIVE = 1062;
+
 /// The service process could not connect to the service controller.
 pub const FAILED_SERVICE_CONTROLLER_CONNECT = 1063;
+
 /// An exception occurred in the service when handling the control request.
 pub const EXCEPTION_IN_SERVICE = 1064;
+
 /// The database specified does not exist.
 pub const DATABASE_DOES_NOT_EXIST = 1065;
+
 /// The service has returned a service-specific error code.
 pub const SERVICE_SPECIFIC_ERROR = 1066;
+
 /// The process terminated unexpectedly.
 pub const PROCESS_ABORTED = 1067;
+
 /// The dependency service or group failed to start.
 pub const SERVICE_DEPENDENCY_FAIL = 1068;
+
 /// The service did not start due to a logon failure.
 pub const SERVICE_LOGON_FAILED = 1069;
+
 /// After starting, the service hung in a start-pending state.
 pub const SERVICE_START_HANG = 1070;
+
 /// The specified service database lock is invalid.
 pub const INVALID_SERVICE_LOCK = 1071;
+
 /// The specified service has been marked for deletion.
 pub const SERVICE_MARKED_FOR_DELETE = 1072;
+
 /// The specified service already exists.
 pub const SERVICE_EXISTS = 1073;
+
 /// The system is currently running with the last-known-good configuration.
 pub const ALREADY_RUNNING_LKG = 1074;
+
 /// The dependency service does not exist or has been marked for deletion.
 pub const SERVICE_DEPENDENCY_DELETED = 1075;
+
 /// The current boot has already been accepted for use as the last-known-good control set.
 pub const BOOT_ALREADY_ACCEPTED = 1076;
+
 /// No attempts to start the service have been made since the last boot.
 pub const SERVICE_NEVER_STARTED = 1077;
+
 /// The name is already in use as either a service name or a service display name.
 pub const DUPLICATE_SERVICE_NAME = 1078;
+
 /// The account specified for this service is different from the account specified for other services running in the same process.
 pub const DIFFERENT_SERVICE_ACCOUNT = 1079;
+
 /// Failure actions can only be set for Win32 services, not for drivers.
 pub const CANNOT_DETECT_DRIVER_FAILURE = 1080;
+
 /// This service runs in the same process as the service control manager. Therefore, the service control manager cannot take action if this service's process terminates unexpectedly.
 pub const CANNOT_DETECT_PROCESS_ABORT = 1081;
+
 /// No recovery program has been configured for this service.
 pub const NO_RECOVERY_PROGRAM = 1082;
+
 /// The executable program that this service is configured to run in does not implement the service.
 pub const SERVICE_NOT_IN_EXE = 1083;
+
 /// This service cannot be started in Safe Mode.
 pub const NOT_SAFEBOOT_SERVICE = 1084;
+
 /// The physical end of the tape has been reached.
 pub const END_OF_MEDIA = 1100;
+
 /// A tape access reached a filemark.
 pub const FILEMARK_DETECTED = 1101;
+
 /// The beginning of the tape or a partition was encountered.
 pub const BEGINNING_OF_MEDIA = 1102;
+
 /// A tape access reached the end of a set of files.
 pub const SETMARK_DETECTED = 1103;
+
 /// No more data is on the tape.
 pub const NO_DATA_DETECTED = 1104;
+
 /// Tape could not be partitioned.
 pub const PARTITION_FAILURE = 1105;
+
 /// When accessing a new tape of a multivolume partition, the current block size is incorrect.
 pub const INVALID_BLOCK_LENGTH = 1106;
+
 /// Tape partition information could not be found when loading a tape.
 pub const DEVICE_NOT_PARTITIONED = 1107;
+
 /// Unable to lock the media eject mechanism.
 pub const UNABLE_TO_LOCK_MEDIA = 1108;
+
 /// Unable to unload the media.
 pub const UNABLE_TO_UNLOAD_MEDIA = 1109;
+
 /// The media in the drive may have changed.
 pub const MEDIA_CHANGED = 1110;
+
 /// The I/O bus was reset.
 pub const BUS_RESET = 1111;
+
 /// No media in drive.
 pub const NO_MEDIA_IN_DRIVE = 1112;
+
 /// No mapping for the Unicode character exists in the target multi-byte code page.
 pub const NO_UNICODE_TRANSLATION = 1113;
+
 /// A dynamic link library (DLL) initialization routine failed.
 pub const DLL_INIT_FAILED = 1114;
+
 /// A system shutdown is in progress.
 pub const SHUTDOWN_IN_PROGRESS = 1115;
+
 /// Unable to abort the system shutdown because no shutdown was in progress.
 pub const NO_SHUTDOWN_IN_PROGRESS = 1116;
+
 /// The request could not be performed because of an I/O device error.
 pub const IO_DEVICE = 1117;
+
 /// No serial device was successfully initialized. The serial driver will unload.
 pub const SERIAL_NO_DEVICE = 1118;
+
 /// Unable to open a device that was sharing an interrupt request (IRQ) with other devices. At least one other device that uses that IRQ was already opened.
 pub const IRQ_BUSY = 1119;
+
 /// A serial I/O operation was completed by another write to the serial port. The IOCTL_SERIAL_XOFF_COUNTER reached zero.)
 pub const MORE_WRITES = 1120;
+
 /// A serial I/O operation completed because the timeout period expired. The IOCTL_SERIAL_XOFF_COUNTER did not reach zero.)
 pub const COUNTER_TIMEOUT = 1121;
+
 /// No ID address mark was found on the floppy disk.
 pub const FLOPPY_ID_MARK_NOT_FOUND = 1122;
+
 /// Mismatch between the floppy disk sector ID field and the floppy disk controller track address.
 pub const FLOPPY_WRONG_CYLINDER = 1123;
+
 /// The floppy disk controller reported an error that is not recognized by the floppy disk driver.
 pub const FLOPPY_UNKNOWN_ERROR = 1124;
+
 /// The floppy disk controller returned inconsistent results in its registers.
 pub const FLOPPY_BAD_REGISTERS = 1125;
+
 /// While accessing the hard disk, a recalibrate operation failed, even after retries.
 pub const DISK_RECALIBRATE_FAILED = 1126;
+
 /// While accessing the hard disk, a disk operation failed even after retries.
 pub const DISK_OPERATION_FAILED = 1127;
+
 /// While accessing the hard disk, a disk controller reset was needed, but even that failed.
 pub const DISK_RESET_FAILED = 1128;
+
 /// Physical end of tape encountered.
 pub const EOM_OVERFLOW = 1129;
+
 /// Not enough server storage is available to process this command.
 pub const NOT_ENOUGH_SERVER_MEMORY = 1130;
+
 /// A potential deadlock condition has been detected.
 pub const POSSIBLE_DEADLOCK = 1131;
+
 /// The base address or the file offset specified does not have the proper alignment.
 pub const MAPPED_ALIGNMENT = 1132;
+
 /// An attempt to change the system power state was vetoed by another application or driver.
 pub const SET_POWER_STATE_VETOED = 1140;
+
 /// The system BIOS failed an attempt to change the system power state.
 pub const SET_POWER_STATE_FAILED = 1141;
+
 /// An attempt was made to create more links on a file than the file system supports.
 pub const TOO_MANY_LINKS = 1142;
+
 /// The specified program requires a newer version of Windows.
 pub const OLD_WIN_VERSION = 1150;
+
 /// The specified program is not a Windows or MS-DOS program.
 pub const APP_WRONG_OS = 1151;
+
 /// Cannot start more than one instance of the specified program.
 pub const SINGLE_INSTANCE_APP = 1152;
+
 /// The specified program was written for an earlier version of Windows.
 pub const RMODE_APP = 1153;
+
 /// One of the library files needed to run this application is damaged.
 pub const INVALID_DLL = 1154;
+
 /// No application is associated with the specified file for this operation.
 pub const NO_ASSOCIATION = 1155;
+
 /// An error occurred in sending the command to the application.
 pub const DDE_FAIL = 1156;
+
 /// One of the library files needed to run this application cannot be found.
 pub const DLL_NOT_FOUND = 1157;
+
 /// The current process has used all of its system allowance of handles for Window Manager objects.
 pub const NO_MORE_USER_HANDLES = 1158;
+
 /// The message can be used only with synchronous operations.
 pub const MESSAGE_SYNC_ONLY = 1159;
+
 /// The indicated source element has no media.
 pub const SOURCE_ELEMENT_EMPTY = 1160;
+
 /// The indicated destination element already contains media.
 pub const DESTINATION_ELEMENT_FULL = 1161;
+
 /// The indicated element does not exist.
 pub const ILLEGAL_ELEMENT_ADDRESS = 1162;
+
 /// The indicated element is part of a magazine that is not present.
 pub const MAGAZINE_NOT_PRESENT = 1163;
+
 /// The indicated device requires reinitialization due to hardware errors.
 pub const DEVICE_REINITIALIZATION_NEEDED = 1164;
+
 /// The device has indicated that cleaning is required before further operations are attempted.
 pub const DEVICE_REQUIRES_CLEANING = 1165;
+
 /// The device has indicated that its door is open.
 pub const DEVICE_DOOR_OPEN = 1166;
+
 /// The device is not connected.
 pub const DEVICE_NOT_CONNECTED = 1167;
+
 /// Element not found.
 pub const NOT_FOUND = 1168;
+
 /// There was no match for the specified key in the index.
 pub const NO_MATCH = 1169;
+
 /// The property set specified does not exist on the object.
 pub const SET_NOT_FOUND = 1170;
+
 /// The point passed to GetMouseMovePoints is not in the buffer.
 pub const POINT_NOT_FOUND = 1171;
+
 /// The tracking (workstation) service is not running.
 pub const NO_TRACKING_SERVICE = 1172;
+
 /// The Volume ID could not be found.
 pub const NO_VOLUME_ID = 1173;
+
 /// Unable to remove the file to be replaced.
 pub const UNABLE_TO_REMOVE_REPLACED = 1175;
+
 /// Unable to move the replacement file to the file to be replaced. The file to be replaced has retained its original name.
 pub const UNABLE_TO_MOVE_REPLACEMENT = 1176;
+
 /// Unable to move the replacement file to the file to be replaced. The file to be replaced has been renamed using the backup name.
 pub const UNABLE_TO_MOVE_REPLACEMENT_2 = 1177;
+
 /// The volume change journal is being deleted.
 pub const JOURNAL_DELETE_IN_PROGRESS = 1178;
+
 /// The volume change journal is not active.
 pub const JOURNAL_NOT_ACTIVE = 1179;
+
 /// A file was found, but it may not be the correct file.
 pub const POTENTIAL_FILE_FOUND = 1180;
+
 /// The journal entry has been deleted from the journal.
 pub const JOURNAL_ENTRY_DELETED = 1181;
+
 /// A system shutdown has already been scheduled.
 pub const SHUTDOWN_IS_SCHEDULED = 1190;
+
 /// The system shutdown cannot be initiated because there are other users logged on to the computer.
 pub const SHUTDOWN_USERS_LOGGED_ON = 1191;
+
 /// The specified device name is invalid.
 pub const BAD_DEVICE = 1200;
+
 /// The device is not currently connected but it is a remembered connection.
 pub const CONNECTION_UNAVAIL = 1201;
+
 /// The local device name has a remembered connection to another network resource.
 pub const DEVICE_ALREADY_REMEMBERED = 1202;
+
 /// The network path was either typed incorrectly, does not exist, or the network provider is not currently available. Please try retyping the path or contact your network administrator.
 pub const NO_NET_OR_BAD_PATH = 1203;
+
 /// The specified network provider name is invalid.
 pub const BAD_PROVIDER = 1204;
+
 /// Unable to open the network connection profile.
 pub const CANNOT_OPEN_PROFILE = 1205;
+
 /// The network connection profile is corrupted.
 pub const BAD_PROFILE = 1206;
+
 /// Cannot enumerate a noncontainer.
 pub const NOT_CONTAINER = 1207;
+
 /// An extended error has occurred.
 pub const EXTENDED_ERROR = 1208;
+
 /// The format of the specified group name is invalid.
 pub const INVALID_GROUPNAME = 1209;
+
 /// The format of the specified computer name is invalid.
 pub const INVALID_COMPUTERNAME = 1210;
+
 /// The format of the specified event name is invalid.
 pub const INVALID_EVENTNAME = 1211;
+
 /// The format of the specified domain name is invalid.
 pub const INVALID_DOMAINNAME = 1212;
+
 /// The format of the specified service name is invalid.
 pub const INVALID_SERVICENAME = 1213;
+
 /// The format of the specified network name is invalid.
 pub const INVALID_NETNAME = 1214;
+
 /// The format of the specified share name is invalid.
 pub const INVALID_SHARENAME = 1215;
+
 /// The format of the specified password is invalid.
 pub const INVALID_PASSWORDNAME = 1216;
+
 /// The format of the specified message name is invalid.
 pub const INVALID_MESSAGENAME = 1217;
+
 /// The format of the specified message destination is invalid.
 pub const INVALID_MESSAGEDEST = 1218;
+
 /// Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed. Disconnect all previous connections to the server or shared resource and try again.
 pub const SESSION_CREDENTIAL_CONFLICT = 1219;
+
 /// An attempt was made to establish a session to a network server, but there are already too many sessions established to that server.
 pub const REMOTE_SESSION_LIMIT_EXCEEDED = 1220;
+
 /// The workgroup or domain name is already in use by another computer on the network.
 pub const DUP_DOMAINNAME = 1221;
+
 /// The network is not present or not started.
 pub const NO_NETWORK = 1222;
+
 /// The operation was canceled by the user.
 pub const CANCELLED = 1223;
+
 /// The requested operation cannot be performed on a file with a user-mapped section open.
 pub const USER_MAPPED_FILE = 1224;
+
 /// The remote computer refused the network connection.
 pub const CONNECTION_REFUSED = 1225;
+
 /// The network connection was gracefully closed.
 pub const GRACEFUL_DISCONNECT = 1226;
+
 /// The network transport endpoint already has an address associated with it.
 pub const ADDRESS_ALREADY_ASSOCIATED = 1227;
+
 /// An address has not yet been associated with the network endpoint.
 pub const ADDRESS_NOT_ASSOCIATED = 1228;
+
 /// An operation was attempted on a nonexistent network connection.
 pub const CONNECTION_INVALID = 1229;
+
 /// An invalid operation was attempted on an active network connection.
 pub const CONNECTION_ACTIVE = 1230;
+
 /// The network location cannot be reached. For information about network troubleshooting, see Windows Help.
 pub const NETWORK_UNREACHABLE = 1231;
+
 /// The network location cannot be reached. For information about network troubleshooting, see Windows Help.
 pub const HOST_UNREACHABLE = 1232;
+
 /// The network location cannot be reached. For information about network troubleshooting, see Windows Help.
 pub const PROTOCOL_UNREACHABLE = 1233;
+
 /// No service is operating at the destination network endpoint on the remote system.
 pub const PORT_UNREACHABLE = 1234;
+
 /// The request was aborted.
 pub const REQUEST_ABORTED = 1235;
+
 /// The network connection was aborted by the local system.
 pub const CONNECTION_ABORTED = 1236;
+
 /// The operation could not be completed. A retry should be performed.
 pub const RETRY = 1237;
+
 /// A connection to the server could not be made because the limit on the number of concurrent connections for this account has been reached.
 pub const CONNECTION_COUNT_LIMIT = 1238;
+
 /// Attempting to log in during an unauthorized time of day for this account.
 pub const LOGIN_TIME_RESTRICTION = 1239;
+
 /// The account is not authorized to log in from this station.
 pub const LOGIN_WKSTA_RESTRICTION = 1240;
+
 /// The network address could not be used for the operation requested.
 pub const INCORRECT_ADDRESS = 1241;
+
 /// The service is already registered.
 pub const ALREADY_REGISTERED = 1242;
+
 /// The specified service does not exist.
 pub const SERVICE_NOT_FOUND = 1243;
+
 /// The operation being requested was not performed because the user has not been authenticated.
 pub const NOT_AUTHENTICATED = 1244;
+
 /// The operation being requested was not performed because the user has not logged on to the network. The specified service does not exist.
 pub const NOT_LOGGED_ON = 1245;
+
 /// Continue with work in progress.
 pub const CONTINUE = 1246;
+
 /// An attempt was made to perform an initialization operation when initialization has already been completed.
 pub const ALREADY_INITIALIZED = 1247;
+
 /// No more local devices.
 pub const NO_MORE_DEVICES = 1248;
+
 /// The specified site does not exist.
 pub const NO_SUCH_SITE = 1249;
+
 /// A domain controller with the specified name already exists.
 pub const DOMAIN_CONTROLLER_EXISTS = 1250;
+
 /// This operation is supported only when you are connected to the server.
 pub const ONLY_IF_CONNECTED = 1251;
+
 /// The group policy framework should call the extension even if there are no changes.
 pub const OVERRIDE_NOCHANGES = 1252;
+
 /// The specified user does not have a valid profile.
 pub const BAD_USER_PROFILE = 1253;
+
 /// This operation is not supported on a computer running Windows Server 2003 for Small Business Server.
 pub const NOT_SUPPORTED_ON_SBS = 1254;
+
 /// The server machine is shutting down.
 pub const SERVER_SHUTDOWN_IN_PROGRESS = 1255;
+
 /// The remote system is not available. For information about network troubleshooting, see Windows Help.
 pub const HOST_DOWN = 1256;
+
 /// The security identifier provided is not from an account domain.
 pub const NON_ACCOUNT_SID = 1257;
+
 /// The security identifier provided does not have a domain component.
 pub const NON_DOMAIN_SID = 1258;
+
 /// AppHelp dialog canceled thus preventing the application from starting.
 pub const APPHELP_BLOCK = 1259;
+
 /// This program is blocked by group policy. For more information, contact your system administrator.
 pub const ACCESS_DISABLED_BY_POLICY = 1260;
+
 /// A program attempt to use an invalid register value. Normally caused by an uninitialized register. This error is Itanium specific.
 pub const REG_NAT_CONSUMPTION = 1261;
+
 /// The share is currently offline or does not exist.
 pub const CSCSHARE_OFFLINE = 1262;
+
 /// The Kerberos protocol encountered an error while validating the KDC certificate during smartcard logon. There is more information in the system event log.
 pub const PKINIT_FAILURE = 1263;
+
 /// The Kerberos protocol encountered an error while attempting to utilize the smartcard subsystem.
 pub const SMARTCARD_SUBSYSTEM_FAILURE = 1264;
+
 /// The system cannot contact a domain controller to service the authentication request. Please try again later.
 pub const DOWNGRADE_DETECTED = 1265;
+
 /// The machine is locked and cannot be shut down without the force option.
 pub const MACHINE_LOCKED = 1271;
+
 /// An application-defined callback gave invalid data when called.
 pub const CALLBACK_SUPPLIED_INVALID_DATA = 1273;
+
 /// The group policy framework should call the extension in the synchronous foreground policy refresh.
 pub const SYNC_FOREGROUND_REFRESH_REQUIRED = 1274;
+
 /// This driver has been blocked from loading.
 pub const DRIVER_BLOCKED = 1275;
+
 /// A dynamic link library (DLL) referenced a module that was neither a DLL nor the process's executable image.
 pub const INVALID_IMPORT_OF_NON_DLL = 1276;
+
 /// Windows cannot open this program since it has been disabled.
 pub const ACCESS_DISABLED_WEBBLADE = 1277;
+
 /// Windows cannot open this program because the license enforcement system has been tampered with or become corrupted.
 pub const ACCESS_DISABLED_WEBBLADE_TAMPER = 1278;
+
 /// A transaction recover failed.
 pub const RECOVERY_FAILURE = 1279;
+
 /// The current thread has already been converted to a fiber.
 pub const ALREADY_FIBER = 1280;
+
 /// The current thread has already been converted from a fiber.
 pub const ALREADY_THREAD = 1281;
+
 /// The system detected an overrun of a stack-based buffer in this application. This overrun could potentially allow a malicious user to gain control of this application.
 pub const STACK_BUFFER_OVERRUN = 1282;
+
 /// Data present in one of the parameters is more than the function can operate on.
 pub const PARAMETER_QUOTA_EXCEEDED = 1283;
+
 /// An attempt to do an operation on a debug object failed because the object is in the process of being deleted.
 pub const DEBUGGER_INACTIVE = 1284;
+
 /// An attempt to delay-load a .dll or get a function address in a delay-loaded .dll failed.
 pub const DELAY_LOAD_FAILED = 1285;
+
 /// %1 is a 16-bit application. You do not have permissions to execute 16-bit applications. Check your permissions with your system administrator.
 pub const VDM_DISALLOWED = 1286;
+
 /// Insufficient information exists to identify the cause of failure.
 pub const UNIDENTIFIED_ERROR = 1287;
+
 /// The parameter passed to a C runtime function is incorrect.
 pub const INVALID_CRUNTIME_PARAMETER = 1288;
+
 /// The operation occurred beyond the valid data length of the file.
 pub const BEYOND_VDL = 1289;
+
 /// The service start failed since one or more services in the same process have an incompatible service SID type setting. A service with restricted service SID type can only coexist in the same process with other services with a restricted SID type. If the service SID type for this service was just configured, the hosting process must be restarted in order to start this service.
 /// On Windows Server 2003 and Windows XP, an unrestricted service cannot coexist in the same process with other services. The service with the unrestricted service SID type must be moved to an owned process in order to start this service.
 pub const INCOMPATIBLE_SERVICE_SID_TYPE = 1290;
+
 /// The process hosting the driver for this device has been terminated.
 pub const DRIVER_PROCESS_TERMINATED = 1291;
+
 /// An operation attempted to exceed an implementation-defined limit.
 pub const IMPLEMENTATION_LIMIT = 1292;
+
 /// Either the target process, or the target thread's containing process, is a protected process.
 pub const PROCESS_IS_PROTECTED = 1293;
+
 /// The service notification client is lagging too far behind the current state of services in the machine.
 pub const SERVICE_NOTIFY_CLIENT_LAGGING = 1294;
+
 /// The requested file operation failed because the storage quota was exceeded. To free up disk space, move files to a different location or delete unnecessary files. For more information, contact your system administrator.
 pub const DISK_QUOTA_EXCEEDED = 1295;
+
 /// The requested file operation failed because the storage policy blocks that type of file. For more information, contact your system administrator.
 pub const CONTENT_BLOCKED = 1296;
+
 /// A privilege that the service requires to function properly does not exist in the service account configuration. You may use the Services Microsoft Management Console (MMC) snap-in (services.msc) and the Local Security Settings MMC snap-in (secpol.msc) to view the service configuration and the account configuration.
 pub const INCOMPATIBLE_SERVICE_PRIVILEGE = 1297;
+
 /// A thread involved in this operation appears to be unresponsive.
 pub const APP_HANG = 1298;
+
 /// Indicates a particular Security ID may not be assigned as the label of an object.
 pub const INVALID_LABEL = 1299;
+
 /// Not all privileges or groups referenced are assigned to the caller.
 pub const NOT_ALL_ASSIGNED = 1300;
+
 /// Some mapping between account names and security IDs was not done.
 pub const SOME_NOT_MAPPED = 1301;
+
 /// No system quota limits are specifically set for this account.
 pub const NO_QUOTAS_FOR_ACCOUNT = 1302;
+
 /// No encryption key is available. A well-known encryption key was returned.
 pub const LOCAL_USER_SESSION_KEY = 1303;
+
 /// The password is too complex to be converted to a LAN Manager password. The LAN Manager password returned is a NULL string.
 pub const NULL_LM_PASSWORD = 1304;
+
 /// The revision level is unknown.
 pub const UNKNOWN_REVISION = 1305;
+
 /// Indicates two revision levels are incompatible.
 pub const REVISION_MISMATCH = 1306;
+
 /// This security ID may not be assigned as the owner of this object.
 pub const INVALID_OWNER = 1307;
+
 /// This security ID may not be assigned as the primary group of an object.
 pub const INVALID_PRIMARY_GROUP = 1308;
+
 /// An attempt has been made to operate on an impersonation token by a thread that is not currently impersonating a client.
 pub const NO_IMPERSONATION_TOKEN = 1309;
+
 /// The group may not be disabled.
 pub const CANT_DISABLE_MANDATORY = 1310;
+
 /// There are currently no logon servers available to service the logon request.
 pub const NO_LOGON_SERVERS = 1311;
+
 /// A specified logon session does not exist. It may already have been terminated.
 pub const NO_SUCH_LOGON_SESSION = 1312;
+
 /// A specified privilege does not exist.
 pub const NO_SUCH_PRIVILEGE = 1313;
+
 /// A required privilege is not held by the client.
 pub const PRIVILEGE_NOT_HELD = 1314;
+
 /// The name provided is not a properly formed account name.
 pub const INVALID_ACCOUNT_NAME = 1315;
+
 /// The specified account already exists.
 pub const USER_EXISTS = 1316;
+
 /// The specified account does not exist.
 pub const NO_SUCH_USER = 1317;
+
 /// The specified group already exists.
 pub const GROUP_EXISTS = 1318;
+
 /// The specified group does not exist.
 pub const NO_SUCH_GROUP = 1319;
+
 /// Either the specified user account is already a member of the specified group, or the specified group cannot be deleted because it contains a member.
 pub const MEMBER_IN_GROUP = 1320;
+
 /// The specified user account is not a member of the specified group account.
 pub const MEMBER_NOT_IN_GROUP = 1321;
+
 /// This operation is disallowed as it could result in an administration account being disabled, deleted or unable to log on.
 pub const LAST_ADMIN = 1322;
+
 /// Unable to update the password. The value provided as the current password is incorrect.
 pub const WRONG_PASSWORD = 1323;
+
 /// Unable to update the password. The value provided for the new password contains values that are not allowed in passwords.
 pub const ILL_FORMED_PASSWORD = 1324;
+
 /// Unable to update the password. The value provided for the new password does not meet the length, complexity, or history requirements of the domain.
 pub const PASSWORD_RESTRICTION = 1325;
+
 /// The user name or password is incorrect.
 pub const LOGON_FAILURE = 1326;
+
 /// Account restrictions are preventing this user from signing in. For example: blank passwords aren't allowed, sign-in times are limited, or a policy restriction has been enforced.
 pub const ACCOUNT_RESTRICTION = 1327;
+
 /// Your account has time restrictions that keep you from signing in right now.
 pub const INVALID_LOGON_HOURS = 1328;
+
 /// This user isn't allowed to sign in to this computer.
 pub const INVALID_WORKSTATION = 1329;
+
 /// The password for this account has expired.
 pub const PASSWORD_EXPIRED = 1330;
+
 /// This user can't sign in because this account is currently disabled.
 pub const ACCOUNT_DISABLED = 1331;
+
 /// No mapping between account names and security IDs was done.
 pub const NONE_MAPPED = 1332;
+
 /// Too many local user identifiers (LUIDs) were requested at one time.
 pub const TOO_MANY_LUIDS_REQUESTED = 1333;
+
 /// No more local user identifiers (LUIDs) are available.
 pub const LUIDS_EXHAUSTED = 1334;
+
 /// The subauthority part of a security ID is invalid for this particular use.
 pub const INVALID_SUB_AUTHORITY = 1335;
+
 /// The access control list (ACL) structure is invalid.
 pub const INVALID_ACL = 1336;
+
 /// The security ID structure is invalid.
 pub const INVALID_SID = 1337;
+
 /// The security descriptor structure is invalid.
 pub const INVALID_SECURITY_DESCR = 1338;
+
 /// The inherited access control list (ACL) or access control entry (ACE) could not be built.
 pub const BAD_INHERITANCE_ACL = 1340;
+
 /// The server is currently disabled.
 pub const SERVER_DISABLED = 1341;
+
 /// The server is currently enabled.
 pub const SERVER_NOT_DISABLED = 1342;
+
 /// The value provided was an invalid value for an identifier authority.
 pub const INVALID_ID_AUTHORITY = 1343;
+
 /// No more memory is available for security information updates.
 pub const ALLOTTED_SPACE_EXCEEDED = 1344;
+
 /// The specified attributes are invalid, or incompatible with the attributes for the group as a whole.
 pub const INVALID_GROUP_ATTRIBUTES = 1345;
+
 /// Either a required impersonation level was not provided, or the provided impersonation level is invalid.
 pub const BAD_IMPERSONATION_LEVEL = 1346;
+
 /// Cannot open an anonymous level security token.
 pub const CANT_OPEN_ANONYMOUS = 1347;
+
 /// The validation information class requested was invalid.
 pub const BAD_VALIDATION_CLASS = 1348;
+
 /// The type of the token is inappropriate for its attempted use.
 pub const BAD_TOKEN_TYPE = 1349;
+
 /// Unable to perform a security operation on an object that has no associated security.
 pub const NO_SECURITY_ON_OBJECT = 1350;
+
 /// Configuration information could not be read from the domain controller, either because the machine is unavailable, or access has been denied.
 pub const CANT_ACCESS_DOMAIN_INFO = 1351;
+
 /// The security account manager (SAM) or local security authority (LSA) server was in the wrong state to perform the security operation.
 pub const INVALID_SERVER_STATE = 1352;
+
 /// The domain was in the wrong state to perform the security operation.
 pub const INVALID_DOMAIN_STATE = 1353;
+
 /// This operation is only allowed for the Primary Domain Controller of the domain.
 pub const INVALID_DOMAIN_ROLE = 1354;
+
 /// The specified domain either does not exist or could not be contacted.
 pub const NO_SUCH_DOMAIN = 1355;
+
 /// The specified domain already exists.
 pub const DOMAIN_EXISTS = 1356;
+
 /// An attempt was made to exceed the limit on the number of domains per server.
 pub const DOMAIN_LIMIT_EXCEEDED = 1357;
+
 /// Unable to complete the requested operation because of either a catastrophic media failure or a data structure corruption on the disk.
 pub const INTERNAL_DB_CORRUPTION = 1358;
+
 /// An internal error occurred.
 pub const INTERNAL_ERROR = 1359;
+
 /// Generic access types were contained in an access mask which should already be mapped to nongeneric types.
 pub const GENERIC_NOT_MAPPED = 1360;
+
 /// A security descriptor is not in the right format (absolute or self-relative).
 pub const BAD_DESCRIPTOR_FORMAT = 1361;
+
 /// The requested action is restricted for use by logon processes only. The calling process has not registered as a logon process.
 pub const NOT_LOGON_PROCESS = 1362;
+
 /// Cannot start a new logon session with an ID that is already in use.
 pub const LOGON_SESSION_EXISTS = 1363;
+
 /// A specified authentication package is unknown.
 pub const NO_SUCH_PACKAGE = 1364;
+
 /// The logon session is not in a state that is consistent with the requested operation.
 pub const BAD_LOGON_SESSION_STATE = 1365;
+
 /// The logon session ID is already in use.
 pub const LOGON_SESSION_COLLISION = 1366;
+
 /// A logon request contained an invalid logon type value.
 pub const INVALID_LOGON_TYPE = 1367;
+
 /// Unable to impersonate using a named pipe until data has been read from that pipe.
 pub const CANNOT_IMPERSONATE = 1368;
+
 /// The transaction state of a registry subtree is incompatible with the requested operation.
 pub const RXACT_INVALID_STATE = 1369;
+
 /// An internal security database corruption has been encountered.
 pub const RXACT_COMMIT_FAILURE = 1370;
+
 /// Cannot perform this operation on built-in accounts.
 pub const SPECIAL_ACCOUNT = 1371;
+
 /// Cannot perform this operation on this built-in special group.
 pub const SPECIAL_GROUP = 1372;
+
 /// Cannot perform this operation on this built-in special user.
 pub const SPECIAL_USER = 1373;
+
 /// The user cannot be removed from a group because the group is currently the user's primary group.
 pub const MEMBERS_PRIMARY_GROUP = 1374;
+
 /// The token is already in use as a primary token.
 pub const TOKEN_ALREADY_IN_USE = 1375;
+
 /// The specified local group does not exist.
 pub const NO_SUCH_ALIAS = 1376;
+
 /// The specified account name is not a member of the group.
 pub const MEMBER_NOT_IN_ALIAS = 1377;
+
 /// The specified account name is already a member of the group.
 pub const MEMBER_IN_ALIAS = 1378;
+
 /// The specified local group already exists.
 pub const ALIAS_EXISTS = 1379;
+
 /// Logon failure: the user has not been granted the requested logon type at this computer.
 pub const LOGON_NOT_GRANTED = 1380;
+
 /// The maximum number of secrets that may be stored in a single system has been exceeded.
 pub const TOO_MANY_SECRETS = 1381;
+
 /// The length of a secret exceeds the maximum length allowed.
 pub const SECRET_TOO_LONG = 1382;
+
 /// The local security authority database contains an internal inconsistency.
 pub const INTERNAL_DB_ERROR = 1383;
+
 /// During a logon attempt, the user's security context accumulated too many security IDs.
 pub const TOO_MANY_CONTEXT_IDS = 1384;
+
 /// Logon failure: the user has not been granted the requested logon type at this computer.
 pub const LOGON_TYPE_NOT_GRANTED = 1385;
+
 /// A cross-encrypted password is necessary to change a user password.
 pub const NT_CROSS_ENCRYPTION_REQUIRED = 1386;
+
 /// A member could not be added to or removed from the local group because the member does not exist.
 pub const NO_SUCH_MEMBER = 1387;
+
 /// A new member could not be added to a local group because the member has the wrong account type.
 pub const INVALID_MEMBER = 1388;
+
 /// Too many security IDs have been specified.
 pub const TOO_MANY_SIDS = 1389;
+
 /// A cross-encrypted password is necessary to change this user password.
 pub const LM_CROSS_ENCRYPTION_REQUIRED = 1390;
+
 /// Indicates an ACL contains no inheritable components.
 pub const NO_INHERITANCE = 1391;
+
 /// The file or directory is corrupted and unreadable.
 pub const FILE_CORRUPT = 1392;
+
 /// The disk structure is corrupted and unreadable.
 pub const DISK_CORRUPT = 1393;
+
 /// There is no user session key for the specified logon session.
 pub const NO_USER_SESSION_KEY = 1394;
+
 /// The service being accessed is licensed for a particular number of connections. No more connections can be made to the service at this time because there are already as many connections as the service can accept.
 pub const LICENSE_QUOTA_EXCEEDED = 1395;
+
 /// The target account name is incorrect.
 pub const WRONG_TARGET_NAME = 1396;
+
 /// Mutual Authentication failed. The server's password is out of date at the domain controller.
 pub const MUTUAL_AUTH_FAILED = 1397;
+
 /// There is a time and/or date difference between the client and server.
 pub const TIME_SKEW = 1398;
+
 /// This operation cannot be performed on the current domain.
 pub const CURRENT_DOMAIN_NOT_ALLOWED = 1399;
+
 /// Invalid window handle.
 pub const INVALID_WINDOW_HANDLE = 1400;
+
 /// Invalid menu handle.
 pub const INVALID_MENU_HANDLE = 1401;
+
 /// Invalid cursor handle.
 pub const INVALID_CURSOR_HANDLE = 1402;
+
 /// Invalid accelerator table handle.
 pub const INVALID_ACCEL_HANDLE = 1403;
+
 /// Invalid hook handle.
 pub const INVALID_HOOK_HANDLE = 1404;
+
 /// Invalid handle to a multiple-window position structure.
 pub const INVALID_DWP_HANDLE = 1405;
+
 /// Cannot create a top-level child window.
 pub const TLW_WITH_WSCHILD = 1406;
+
 /// Cannot find window class.
 pub const CANNOT_FIND_WND_CLASS = 1407;
+
 /// Invalid window; it belongs to other thread.
 pub const WINDOW_OF_OTHER_THREAD = 1408;
+
 /// Hot key is already registered.
 pub const HOTKEY_ALREADY_REGISTERED = 1409;
+
 /// Class already exists.
 pub const CLASS_ALREADY_EXISTS = 1410;
+
 /// Class does not exist.
 pub const CLASS_DOES_NOT_EXIST = 1411;
+
 /// Class still has open windows.
 pub const CLASS_HAS_WINDOWS = 1412;
+
 /// Invalid index.
 pub const INVALID_INDEX = 1413;
+
 /// Invalid icon handle.
 pub const INVALID_ICON_HANDLE = 1414;
+
 /// Using private DIALOG window words.
 pub const PRIVATE_DIALOG_INDEX = 1415;
+
 /// The list box identifier was not found.
 pub const LISTBOX_ID_NOT_FOUND = 1416;
+
 /// No wildcards were found.
 pub const NO_WILDCARD_CHARACTERS = 1417;
+
 /// Thread does not have a clipboard open.
 pub const CLIPBOARD_NOT_OPEN = 1418;
+
 /// Hot key is not registered.
 pub const HOTKEY_NOT_REGISTERED = 1419;
+
 /// The window is not a valid dialog window.
 pub const WINDOW_NOT_DIALOG = 1420;
+
 /// Control ID not found.
 pub const CONTROL_ID_NOT_FOUND = 1421;
+
 /// Invalid message for a combo box because it does not have an edit control.
 pub const INVALID_COMBOBOX_MESSAGE = 1422;
+
 /// The window is not a combo box.
 pub const WINDOW_NOT_COMBOBOX = 1423;
+
 /// Height must be less than 256.
 pub const INVALID_EDIT_HEIGHT = 1424;
+
 /// Invalid device context (DC) handle.
 pub const DC_NOT_FOUND = 1425;
+
 /// Invalid hook procedure type.
 pub const INVALID_HOOK_FILTER = 1426;
+
 /// Invalid hook procedure.
 pub const INVALID_FILTER_PROC = 1427;
+
 /// Cannot set nonlocal hook without a module handle.
 pub const HOOK_NEEDS_HMOD = 1428;
+
 /// This hook procedure can only be set globally.
 pub const GLOBAL_ONLY_HOOK = 1429;
+
 /// The journal hook procedure is already installed.
 pub const JOURNAL_HOOK_SET = 1430;
+
 /// The hook procedure is not installed.
 pub const HOOK_NOT_INSTALLED = 1431;
+
 /// Invalid message for single-selection list box.
 pub const INVALID_LB_MESSAGE = 1432;
+
 /// LB_SETCOUNT sent to non-lazy list box.
 pub const SETCOUNT_ON_BAD_LB = 1433;
+
 /// This list box does not support tab stops.
 pub const LB_WITHOUT_TABSTOPS = 1434;
+
 /// Cannot destroy object created by another thread.
 pub const DESTROY_OBJECT_OF_OTHER_THREAD = 1435;
+
 /// Child windows cannot have menus.
 pub const CHILD_WINDOW_MENU = 1436;
+
 /// The window does not have a system menu.
 pub const NO_SYSTEM_MENU = 1437;
+
 /// Invalid message box style.
 pub const INVALID_MSGBOX_STYLE = 1438;
+
 /// Invalid system-wide (SPI_*) parameter.
 pub const INVALID_SPI_VALUE = 1439;
+
 /// Screen already locked.
 pub const SCREEN_ALREADY_LOCKED = 1440;
+
 /// All handles to windows in a multiple-window position structure must have the same parent.
 pub const HWNDS_HAVE_DIFF_PARENT = 1441;
+
 /// The window is not a child window.
 pub const NOT_CHILD_WINDOW = 1442;
+
 /// Invalid GW_* command.
 pub const INVALID_GW_COMMAND = 1443;
+
 /// Invalid thread identifier.
 pub const INVALID_THREAD_ID = 1444;
+
 /// Cannot process a message from a window that is not a multiple document interface (MDI) window.
 pub const NON_MDICHILD_WINDOW = 1445;
+
 /// Popup menu already active.
 pub const POPUP_ALREADY_ACTIVE = 1446;
+
 /// The window does not have scroll bars.
 pub const NO_SCROLLBARS = 1447;
+
 /// Scroll bar range cannot be greater than MAXLONG.
 pub const INVALID_SCROLLBAR_RANGE = 1448;
+
 /// Cannot show or remove the window in the way specified.
 pub const INVALID_SHOWWIN_COMMAND = 1449;
+
 /// Insufficient system resources exist to complete the requested service.
 pub const NO_SYSTEM_RESOURCES = 1450;
+
 /// Insufficient system resources exist to complete the requested service.
 pub const NONPAGED_SYSTEM_RESOURCES = 1451;
+
 /// Insufficient system resources exist to complete the requested service.
 pub const PAGED_SYSTEM_RESOURCES = 1452;
+
 /// Insufficient quota to complete the requested service.
 pub const WORKING_SET_QUOTA = 1453;
+
 /// Insufficient quota to complete the requested service.
 pub const PAGEFILE_QUOTA = 1454;
+
 /// The paging file is too small for this operation to complete.
 pub const COMMITMENT_LIMIT = 1455;
+
 /// A menu item was not found.
 pub const MENU_ITEM_NOT_FOUND = 1456;
+
 /// Invalid keyboard layout handle.
 pub const INVALID_KEYBOARD_HANDLE = 1457;
+
 /// Hook type not allowed.
 pub const HOOK_TYPE_NOT_ALLOWED = 1458;
+
 /// This operation requires an interactive window station.
 pub const REQUIRES_INTERACTIVE_WINDOWSTATION = 1459;
+
 /// This operation returned because the timeout period expired.
 pub const TIMEOUT = 1460;
+
 /// Invalid monitor handle.
 pub const INVALID_MONITOR_HANDLE = 1461;
+
 /// Incorrect size argument.
 pub const INCORRECT_SIZE = 1462;
+
 /// The symbolic link cannot be followed because its type is disabled.
 pub const SYMLINK_CLASS_DISABLED = 1463;
+
 /// This application does not support the current operation on symbolic links.
 pub const SYMLINK_NOT_SUPPORTED = 1464;
+
 /// Windows was unable to parse the requested XML data.
 pub const XML_PARSE_ERROR = 1465;
+
 /// An error was encountered while processing an XML digital signature.
 pub const XMLDSIG_ERROR = 1466;
+
 /// This application must be restarted.
 pub const RESTART_APPLICATION = 1467;
+
 /// The caller made the connection request in the wrong routing compartment.
 pub const WRONG_COMPARTMENT = 1468;
+
 /// There was an AuthIP failure when attempting to connect to the remote host.
 pub const AUTHIP_FAILURE = 1469;
+
 /// Insufficient NVRAM resources exist to complete the requested service. A reboot might be required.
 pub const NO_NVRAM_RESOURCES = 1470;
+
 /// Unable to finish the requested operation because the specified process is not a GUI process.
 pub const NOT_GUI_PROCESS = 1471;
+
 /// The event log file is corrupted.
 pub const EVENTLOG_FILE_CORRUPT = 1500;
+
 /// No event log file could be opened, so the event logging service did not start.
 pub const EVENTLOG_CANT_START = 1501;
+
 /// The event log file is full.
 pub const LOG_FILE_FULL = 1502;
+
 /// The event log file has changed between read operations.
 pub const EVENTLOG_FILE_CHANGED = 1503;
+
 /// The specified task name is invalid.
 pub const INVALID_TASK_NAME = 1550;
+
 /// The specified task index is invalid.
 pub const INVALID_TASK_INDEX = 1551;
+
 /// The specified thread is already joining a task.
 pub const THREAD_ALREADY_IN_TASK = 1552;
+
 /// The Windows Installer Service could not be accessed. This can occur if the Windows Installer is not correctly installed. Contact your support personnel for assistance.
 pub const INSTALL_SERVICE_FAILURE = 1601;
+
 /// User cancelled installation.
 pub const INSTALL_USEREXIT = 1602;
+
 /// Fatal error during installation.
 pub const INSTALL_FAILURE = 1603;
+
 /// Installation suspended, incomplete.
 pub const INSTALL_SUSPEND = 1604;
+
 /// This action is only valid for products that are currently installed.
 pub const UNKNOWN_PRODUCT = 1605;
+
 /// Feature ID not registered.
 pub const UNKNOWN_FEATURE = 1606;
+
 /// Component ID not registered.
 pub const UNKNOWN_COMPONENT = 1607;
+
 /// Unknown property.
 pub const UNKNOWN_PROPERTY = 1608;
+
 /// Handle is in an invalid state.
 pub const INVALID_HANDLE_STATE = 1609;
+
 /// The configuration data for this product is corrupt. Contact your support personnel.
 pub const BAD_CONFIGURATION = 1610;
+
 /// Component qualifier not present.
 pub const INDEX_ABSENT = 1611;
+
 /// The installation source for this product is not available. Verify that the source exists and that you can access it.
 pub const INSTALL_SOURCE_ABSENT = 1612;
+
 /// This installation package cannot be installed by the Windows Installer service. You must install a Windows service pack that contains a newer version of the Windows Installer service.
 pub const INSTALL_PACKAGE_VERSION = 1613;
+
 /// Product is uninstalled.
 pub const PRODUCT_UNINSTALLED = 1614;
+
 /// SQL query syntax invalid or unsupported.
 pub const BAD_QUERY_SYNTAX = 1615;
+
 /// Record field does not exist.
 pub const INVALID_FIELD = 1616;
+
 /// The device has been removed.
 pub const DEVICE_REMOVED = 1617;
+
 /// Another installation is already in progress. Complete that installation before proceeding with this install.
 pub const INSTALL_ALREADY_RUNNING = 1618;
+
 /// This installation package could not be opened. Verify that the package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer package.
 pub const INSTALL_PACKAGE_OPEN_FAILED = 1619;
+
 /// This installation package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer package.
 pub const INSTALL_PACKAGE_INVALID = 1620;
+
 /// There was an error starting the Windows Installer service user interface. Contact your support personnel.
 pub const INSTALL_UI_FAILURE = 1621;
+
 /// Error opening installation log file. Verify that the specified log file location exists and that you can write to it.
 pub const INSTALL_LOG_FAILURE = 1622;
+
 /// The language of this installation package is not supported by your system.
 pub const INSTALL_LANGUAGE_UNSUPPORTED = 1623;
+
 /// Error applying transforms. Verify that the specified transform paths are valid.
 pub const INSTALL_TRANSFORM_FAILURE = 1624;
+
 /// This installation is forbidden by system policy. Contact your system administrator.
 pub const INSTALL_PACKAGE_REJECTED = 1625;
+
 /// Function could not be executed.
 pub const FUNCTION_NOT_CALLED = 1626;
+
 /// Function failed during execution.
 pub const FUNCTION_FAILED = 1627;
+
 /// Invalid or unknown table specified.
 pub const INVALID_TABLE = 1628;
+
 /// Data supplied is of wrong type.
 pub const DATATYPE_MISMATCH = 1629;
+
 /// Data of this type is not supported.
 pub const UNSUPPORTED_TYPE = 1630;
+
 /// The Windows Installer service failed to start. Contact your support personnel.
 pub const CREATE_FAILED = 1631;
+
 /// The Temp folder is on a drive that is full or is inaccessible. Free up space on the drive or verify that you have write permission on the Temp folder.
 pub const INSTALL_TEMP_UNWRITABLE = 1632;
+
 /// This installation package is not supported by this processor type. Contact your product vendor.
 pub const INSTALL_PLATFORM_UNSUPPORTED = 1633;
+
 /// Component not used on this computer.
 pub const INSTALL_NOTUSED = 1634;
+
 /// This update package could not be opened. Verify that the update package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer update package.
 pub const PATCH_PACKAGE_OPEN_FAILED = 1635;
+
 /// This update package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer update package.
 pub const PATCH_PACKAGE_INVALID = 1636;
+
 /// This update package cannot be processed by the Windows Installer service. You must install a Windows service pack that contains a newer version of the Windows Installer service.
 pub const PATCH_PACKAGE_UNSUPPORTED = 1637;
+
 /// Another version of this product is already installed. Installation of this version cannot continue. To configure or remove the existing version of this product, use Add/Remove Programs on the Control Panel.
 pub const PRODUCT_VERSION = 1638;
+
 /// Invalid command line argument. Consult the Windows Installer SDK for detailed command line help.
 pub const INVALID_COMMAND_LINE = 1639;
+
 /// Only administrators have permission to add, remove, or configure server software during a Terminal services remote session. If you want to install or configure software on the server, contact your network administrator.
 pub const INSTALL_REMOTE_DISALLOWED = 1640;
+
 /// The requested operation completed successfully. The system will be restarted so the changes can take effect.
 pub const SUCCESS_REBOOT_INITIATED = 1641;
+
 /// The upgrade cannot be installed by the Windows Installer service because the program to be upgraded may be missing, or the upgrade may update a different version of the program. Verify that the program to be upgraded exists on your computer and that you have the correct upgrade.
 pub const PATCH_TARGET_NOT_FOUND = 1642;
+
 /// The update package is not permitted by software restriction policy.
 pub const PATCH_PACKAGE_REJECTED = 1643;
+
 /// One or more customizations are not permitted by software restriction policy.
 pub const INSTALL_TRANSFORM_REJECTED = 1644;
+
 /// The Windows Installer does not permit installation from a Remote Desktop Connection.
 pub const INSTALL_REMOTE_PROHIBITED = 1645;
+
 /// Uninstallation of the update package is not supported.
 pub const PATCH_REMOVAL_UNSUPPORTED = 1646;
+
 /// The update is not applied to this product.
 pub const UNKNOWN_PATCH = 1647;
+
 /// No valid sequence could be found for the set of updates.
 pub const PATCH_NO_SEQUENCE = 1648;
+
 /// Update removal was disallowed by policy.
 pub const PATCH_REMOVAL_DISALLOWED = 1649;
+
 /// The XML update data is invalid.
 pub const INVALID_PATCH_XML = 1650;
+
 /// Windows Installer does not permit updating of managed advertised products. At least one feature of the product must be installed before applying the update.
 pub const PATCH_MANAGED_ADVERTISED_PRODUCT = 1651;
+
 /// The Windows Installer service is not accessible in Safe Mode. Please try again when your computer is not in Safe Mode or you can use System Restore to return your machine to a previous good state.
 pub const INSTALL_SERVICE_SAFEBOOT = 1652;
+
 /// A fail fast exception occurred. Exception handlers will not be invoked and the process will be terminated immediately.
 pub const FAIL_FAST_EXCEPTION = 1653;
+
 /// The app that you are trying to run is not supported on this version of Windows.
 pub const INSTALL_REJECTED = 1654;
+
 /// The string binding is invalid.
 pub const RPC_S_INVALID_STRING_BINDING = 1700;
+
 /// The binding handle is not the correct type.
 pub const RPC_S_WRONG_KIND_OF_BINDING = 1701;
+
 /// The binding handle is invalid.
 pub const RPC_S_INVALID_BINDING = 1702;
+
 /// The RPC protocol sequence is not supported.
 pub const RPC_S_PROTSEQ_NOT_SUPPORTED = 1703;
+
 /// The RPC protocol sequence is invalid.
 pub const RPC_S_INVALID_RPC_PROTSEQ = 1704;
+
 /// The string universal unique identifier (UUID) is invalid.
 pub const RPC_S_INVALID_STRING_UUID = 1705;
+
 /// The endpoint format is invalid.
 pub const RPC_S_INVALID_ENDPOINT_FORMAT = 1706;
+
 /// The network address is invalid.
 pub const RPC_S_INVALID_NET_ADDR = 1707;
+
 /// No endpoint was found.
 pub const RPC_S_NO_ENDPOINT_FOUND = 1708;
+
 /// The timeout value is invalid.
 pub const RPC_S_INVALID_TIMEOUT = 1709;
+
 /// The object universal unique identifier (UUID) was not found.
 pub const RPC_S_OBJECT_NOT_FOUND = 1710;
+
 /// The object universal unique identifier (UUID) has already been registered.
 pub const RPC_S_ALREADY_REGISTERED = 1711;
+
 /// The type universal unique identifier (UUID) has already been registered.
 pub const RPC_S_TYPE_ALREADY_REGISTERED = 1712;
+
 /// The RPC server is already listening.
 pub const RPC_S_ALREADY_LISTENING = 1713;
+
 /// No protocol sequences have been registered.
 pub const RPC_S_NO_PROTSEQS_REGISTERED = 1714;
+
 /// The RPC server is not listening.
 pub const RPC_S_NOT_LISTENING = 1715;
+
 /// The manager type is unknown.
 pub const RPC_S_UNKNOWN_MGR_TYPE = 1716;
+
 /// The interface is unknown.
 pub const RPC_S_UNKNOWN_IF = 1717;
+
 /// There are no bindings.
 pub const RPC_S_NO_BINDINGS = 1718;
+
 /// There are no protocol sequences.
 pub const RPC_S_NO_PROTSEQS = 1719;
+
 /// The endpoint cannot be created.
 pub const RPC_S_CANT_CREATE_ENDPOINT = 1720;
+
 /// Not enough resources are available to complete this operation.
 pub const RPC_S_OUT_OF_RESOURCES = 1721;
+
 /// The RPC server is unavailable.
 pub const RPC_S_SERVER_UNAVAILABLE = 1722;
+
 /// The RPC server is too busy to complete this operation.
 pub const RPC_S_SERVER_TOO_BUSY = 1723;
+
 /// The network options are invalid.
 pub const RPC_S_INVALID_NETWORK_OPTIONS = 1724;
+
 /// There are no remote procedure calls active on this thread.
 pub const RPC_S_NO_CALL_ACTIVE = 1725;
+
 /// The remote procedure call failed.
 pub const RPC_S_CALL_FAILED = 1726;
+
 /// The remote procedure call failed and did not execute.
 pub const RPC_S_CALL_FAILED_DNE = 1727;
+
 /// A remote procedure call (RPC) protocol error occurred.
 pub const RPC_S_PROTOCOL_ERROR = 1728;
+
 /// Access to the HTTP proxy is denied.
 pub const RPC_S_PROXY_ACCESS_DENIED = 1729;
+
 /// The transfer syntax is not supported by the RPC server.
 pub const RPC_S_UNSUPPORTED_TRANS_SYN = 1730;
+
 /// The universal unique identifier (UUID) type is not supported.
 pub const RPC_S_UNSUPPORTED_TYPE = 1732;
+
 /// The tag is invalid.
 pub const RPC_S_INVALID_TAG = 1733;
+
 /// The array bounds are invalid.
 pub const RPC_S_INVALID_BOUND = 1734;
+
 /// The binding does not contain an entry name.
 pub const RPC_S_NO_ENTRY_NAME = 1735;
+
 /// The name syntax is invalid.
 pub const RPC_S_INVALID_NAME_SYNTAX = 1736;
+
 /// The name syntax is not supported.
 pub const RPC_S_UNSUPPORTED_NAME_SYNTAX = 1737;
+
 /// No network address is available to use to construct a universal unique identifier (UUID).
 pub const RPC_S_UUID_NO_ADDRESS = 1739;
+
 /// The endpoint is a duplicate.
 pub const RPC_S_DUPLICATE_ENDPOINT = 1740;
+
 /// The authentication type is unknown.
 pub const RPC_S_UNKNOWN_AUTHN_TYPE = 1741;
+
 /// The maximum number of calls is too small.
 pub const RPC_S_MAX_CALLS_TOO_SMALL = 1742;
+
 /// The string is too long.
 pub const RPC_S_STRING_TOO_LONG = 1743;
+
 /// The RPC protocol sequence was not found.
 pub const RPC_S_PROTSEQ_NOT_FOUND = 1744;
+
 /// The procedure number is out of range.
 pub const RPC_S_PROCNUM_OUT_OF_RANGE = 1745;
+
 /// The binding does not contain any authentication information.
 pub const RPC_S_BINDING_HAS_NO_AUTH = 1746;
+
 /// The authentication service is unknown.
 pub const RPC_S_UNKNOWN_AUTHN_SERVICE = 1747;
+
 /// The authentication level is unknown.
 pub const RPC_S_UNKNOWN_AUTHN_LEVEL = 1748;
+
 /// The security context is invalid.
 pub const RPC_S_INVALID_AUTH_IDENTITY = 1749;
+
 /// The authorization service is unknown.
 pub const RPC_S_UNKNOWN_AUTHZ_SERVICE = 1750;
+
 /// The entry is invalid.
 pub const EPT_S_INVALID_ENTRY = 1751;
+
 /// The server endpoint cannot perform the operation.
 pub const EPT_S_CANT_PERFORM_OP = 1752;
+
 /// There are no more endpoints available from the endpoint mapper.
 pub const EPT_S_NOT_REGISTERED = 1753;
+
 /// No interfaces have been exported.
 pub const RPC_S_NOTHING_TO_EXPORT = 1754;
+
 /// The entry name is incomplete.
 pub const RPC_S_INCOMPLETE_NAME = 1755;
+
 /// The version option is invalid.
 pub const RPC_S_INVALID_VERS_OPTION = 1756;
+
 /// There are no more members.
 pub const RPC_S_NO_MORE_MEMBERS = 1757;
+
 /// There is nothing to unexport.
 pub const RPC_S_NOT_ALL_OBJS_UNEXPORTED = 1758;
+
 /// The interface was not found.
 pub const RPC_S_INTERFACE_NOT_FOUND = 1759;
+
 /// The entry already exists.
 pub const RPC_S_ENTRY_ALREADY_EXISTS = 1760;
+
 /// The entry is not found.
 pub const RPC_S_ENTRY_NOT_FOUND = 1761;
+
 /// The name service is unavailable.
 pub const RPC_S_NAME_SERVICE_UNAVAILABLE = 1762;
+
 /// The network address family is invalid.
 pub const RPC_S_INVALID_NAF_ID = 1763;
+
 /// The requested operation is not supported.
 pub const RPC_S_CANNOT_SUPPORT = 1764;
+
 /// No security context is available to allow impersonation.
 pub const RPC_S_NO_CONTEXT_AVAILABLE = 1765;
+
 /// An internal error occurred in a remote procedure call (RPC).
 pub const RPC_S_INTERNAL_ERROR = 1766;
+
 /// The RPC server attempted an integer division by zero.
 pub const RPC_S_ZERO_DIVIDE = 1767;
+
 /// An addressing error occurred in the RPC server.
 pub const RPC_S_ADDRESS_ERROR = 1768;
+
 /// A floating-point operation at the RPC server caused a division by zero.
 pub const RPC_S_FP_DIV_ZERO = 1769;
+
 /// A floating-point underflow occurred at the RPC server.
 pub const RPC_S_FP_UNDERFLOW = 1770;
+
 /// A floating-point overflow occurred at the RPC server.
 pub const RPC_S_FP_OVERFLOW = 1771;
+
 /// The list of RPC servers available for the binding of auto handles has been exhausted.
 pub const RPC_X_NO_MORE_ENTRIES = 1772;
+
 /// Unable to open the character translation table file.
 pub const RPC_X_SS_CHAR_TRANS_OPEN_FAIL = 1773;
+
 /// The file containing the character translation table has fewer than 512 bytes.
 pub const RPC_X_SS_CHAR_TRANS_SHORT_FILE = 1774;
+
 /// A null context handle was passed from the client to the host during a remote procedure call.
 pub const RPC_X_SS_IN_NULL_CONTEXT = 1775;
+
 /// The context handle changed during a remote procedure call.
 pub const RPC_X_SS_CONTEXT_DAMAGED = 1777;
+
 /// The binding handles passed to a remote procedure call do not match.
 pub const RPC_X_SS_HANDLES_MISMATCH = 1778;
+
 /// The stub is unable to get the remote procedure call handle.
 pub const RPC_X_SS_CANNOT_GET_CALL_HANDLE = 1779;
+
 /// A null reference pointer was passed to the stub.
 pub const RPC_X_NULL_REF_POINTER = 1780;
+
 /// The enumeration value is out of range.
 pub const RPC_X_ENUM_VALUE_OUT_OF_RANGE = 1781;
+
 /// The byte count is too small.
 pub const RPC_X_BYTE_COUNT_TOO_SMALL = 1782;
+
 /// The stub received bad data.
 pub const RPC_X_BAD_STUB_DATA = 1783;
+
 /// The supplied user buffer is not valid for the requested operation.
 pub const INVALID_USER_BUFFER = 1784;
+
 /// The disk media is not recognized. It may not be formatted.
 pub const UNRECOGNIZED_MEDIA = 1785;
+
 /// The workstation does not have a trust secret.
 pub const NO_TRUST_LSA_SECRET = 1786;
+
 /// The security database on the server does not have a computer account for this workstation trust relationship.
 pub const NO_TRUST_SAM_ACCOUNT = 1787;
+
 /// The trust relationship between the primary domain and the trusted domain failed.
 pub const TRUSTED_DOMAIN_FAILURE = 1788;
+
 /// The trust relationship between this workstation and the primary domain failed.
 pub const TRUSTED_RELATIONSHIP_FAILURE = 1789;
+
 /// The network logon failed.
 pub const TRUST_FAILURE = 1790;
+
 /// A remote procedure call is already in progress for this thread.
 pub const RPC_S_CALL_IN_PROGRESS = 1791;
+
 /// An attempt was made to logon, but the network logon service was not started.
 pub const NETLOGON_NOT_STARTED = 1792;
+
 /// The user's account has expired.
 pub const ACCOUNT_EXPIRED = 1793;
+
 /// The redirector is in use and cannot be unloaded.
 pub const REDIRECTOR_HAS_OPEN_HANDLES = 1794;
+
 /// The specified printer driver is already installed.
 pub const PRINTER_DRIVER_ALREADY_INSTALLED = 1795;
+
 /// The specified port is unknown.
 pub const UNKNOWN_PORT = 1796;
+
 /// The printer driver is unknown.
 pub const UNKNOWN_PRINTER_DRIVER = 1797;
+
 /// The print processor is unknown.
 pub const UNKNOWN_PRINTPROCESSOR = 1798;
+
 /// The specified separator file is invalid.
 pub const INVALID_SEPARATOR_FILE = 1799;
+
 /// The specified priority is invalid.
 pub const INVALID_PRIORITY = 1800;
+
 /// The printer name is invalid.
 pub const INVALID_PRINTER_NAME = 1801;
+
 /// The printer already exists.
 pub const PRINTER_ALREADY_EXISTS = 1802;
+
 /// The printer command is invalid.
 pub const INVALID_PRINTER_COMMAND = 1803;
+
 /// The specified datatype is invalid.
 pub const INVALID_DATATYPE = 1804;
+
 /// The environment specified is invalid.
 pub const INVALID_ENVIRONMENT = 1805;
+
 /// There are no more bindings.
 pub const RPC_S_NO_MORE_BINDINGS = 1806;
+
 /// The account used is an interdomain trust account. Use your global user account or local user account to access this server.
 pub const NOLOGON_INTERDOMAIN_TRUST_ACCOUNT = 1807;
+
 /// The account used is a computer account. Use your global user account or local user account to access this server.
 pub const NOLOGON_WORKSTATION_TRUST_ACCOUNT = 1808;
+
 /// The account used is a server trust account. Use your global user account or local user account to access this server.
 pub const NOLOGON_SERVER_TRUST_ACCOUNT = 1809;
+
 /// The name or security ID (SID) of the domain specified is inconsistent with the trust information for that domain.
 pub const DOMAIN_TRUST_INCONSISTENT = 1810;
+
 /// The server is in use and cannot be unloaded.
 pub const SERVER_HAS_OPEN_HANDLES = 1811;
+
 /// The specified image file did not contain a resource section.
 pub const RESOURCE_DATA_NOT_FOUND = 1812;
+
 /// The specified resource type cannot be found in the image file.
 pub const RESOURCE_TYPE_NOT_FOUND = 1813;
+
 /// The specified resource name cannot be found in the image file.
 pub const RESOURCE_NAME_NOT_FOUND = 1814;
+
 /// The specified resource language ID cannot be found in the image file.
 pub const RESOURCE_LANG_NOT_FOUND = 1815;
+
 /// Not enough quota is available to process this command.
 pub const NOT_ENOUGH_QUOTA = 1816;
+
 /// No interfaces have been registered.
 pub const RPC_S_NO_INTERFACES = 1817;
+
 /// The remote procedure call was cancelled.
 pub const RPC_S_CALL_CANCELLED = 1818;
+
 /// The binding handle does not contain all required information.
 pub const RPC_S_BINDING_INCOMPLETE = 1819;
+
 /// A communications failure occurred during a remote procedure call.
 pub const RPC_S_COMM_FAILURE = 1820;
+
 /// The requested authentication level is not supported.
 pub const RPC_S_UNSUPPORTED_AUTHN_LEVEL = 1821;
+
 /// No principal name registered.
 pub const RPC_S_NO_PRINC_NAME = 1822;
+
 /// The error specified is not a valid Windows RPC error code.
 pub const RPC_S_NOT_RPC_ERROR = 1823;
+
 /// A UUID that is valid only on this computer has been allocated.
 pub const RPC_S_UUID_LOCAL_ONLY = 1824;
+
 /// A security package specific error occurred.
 pub const RPC_S_SEC_PKG_ERROR = 1825;
+
 /// Thread is not canceled.
 pub const RPC_S_NOT_CANCELLED = 1826;
+
 /// Invalid operation on the encoding/decoding handle.
 pub const RPC_X_INVALID_ES_ACTION = 1827;
+
 /// Incompatible version of the serializing package.
 pub const RPC_X_WRONG_ES_VERSION = 1828;
+
 /// Incompatible version of the RPC stub.
 pub const RPC_X_WRONG_STUB_VERSION = 1829;
+
 /// The RPC pipe object is invalid or corrupted.
 pub const RPC_X_INVALID_PIPE_OBJECT = 1830;
+
 /// An invalid operation was attempted on an RPC pipe object.
 pub const RPC_X_WRONG_PIPE_ORDER = 1831;
+
 /// Unsupported RPC pipe version.
 pub const RPC_X_WRONG_PIPE_VERSION = 1832;
+
 /// HTTP proxy server rejected the connection because the cookie authentication failed.
 pub const RPC_S_COOKIE_AUTH_FAILED = 1833;
+
 /// The group member was not found.
 pub const RPC_S_GROUP_MEMBER_NOT_FOUND = 1898;
+
 /// The endpoint mapper database entry could not be created.
 pub const EPT_S_CANT_CREATE = 1899;
+
 /// The object universal unique identifier (UUID) is the nil UUID.
 pub const RPC_S_INVALID_OBJECT = 1900;
+
 /// The specified time is invalid.
 pub const INVALID_TIME = 1901;
+
 /// The specified form name is invalid.
 pub const INVALID_FORM_NAME = 1902;
+
 /// The specified form size is invalid.
 pub const INVALID_FORM_SIZE = 1903;
+
 /// The specified printer handle is already being waited on.
 pub const ALREADY_WAITING = 1904;
+
 /// The specified printer has been deleted.
 pub const PRINTER_DELETED = 1905;
+
 /// The state of the printer is invalid.
 pub const INVALID_PRINTER_STATE = 1906;
+
 /// The user's password must be changed before signing in.
 pub const PASSWORD_MUST_CHANGE = 1907;
+
 /// Could not find the domain controller for this domain.
 pub const DOMAIN_CONTROLLER_NOT_FOUND = 1908;
+
 /// The referenced account is currently locked out and may not be logged on to.
 pub const ACCOUNT_LOCKED_OUT = 1909;
+
 /// The object exporter specified was not found.
 pub const OR_INVALID_OXID = 1910;
+
 /// The object specified was not found.
 pub const OR_INVALID_OID = 1911;
+
 /// The object resolver set specified was not found.
 pub const OR_INVALID_SET = 1912;
+
 /// Some data remains to be sent in the request buffer.
 pub const RPC_S_SEND_INCOMPLETE = 1913;
+
 /// Invalid asynchronous remote procedure call handle.
 pub const RPC_S_INVALID_ASYNC_HANDLE = 1914;
+
 /// Invalid asynchronous RPC call handle for this operation.
 pub const RPC_S_INVALID_ASYNC_CALL = 1915;
+
 /// The RPC pipe object has already been closed.
 pub const RPC_X_PIPE_CLOSED = 1916;
+
 /// The RPC call completed before all pipes were processed.
 pub const RPC_X_PIPE_DISCIPLINE_ERROR = 1917;
+
 /// No more data is available from the RPC pipe.
 pub const RPC_X_PIPE_EMPTY = 1918;
+
 /// No site name is available for this machine.
 pub const NO_SITENAME = 1919;
+
 /// The file cannot be accessed by the system.
 pub const CANT_ACCESS_FILE = 1920;
+
 /// The name of the file cannot be resolved by the system.
 pub const CANT_RESOLVE_FILENAME = 1921;
+
 /// The entry is not of the expected type.
 pub const RPC_S_ENTRY_TYPE_MISMATCH = 1922;
+
 /// Not all object UUIDs could be exported to the specified entry.
 pub const RPC_S_NOT_ALL_OBJS_EXPORTED = 1923;
+
 /// Interface could not be exported to the specified entry.
 pub const RPC_S_INTERFACE_NOT_EXPORTED = 1924;
+
 /// The specified profile entry could not be added.
 pub const RPC_S_PROFILE_NOT_ADDED = 1925;
+
 /// The specified profile element could not be added.
 pub const RPC_S_PRF_ELT_NOT_ADDED = 1926;
+
 /// The specified profile element could not be removed.
 pub const RPC_S_PRF_ELT_NOT_REMOVED = 1927;
+
 /// The group element could not be added.
 pub const RPC_S_GRP_ELT_NOT_ADDED = 1928;
+
 /// The group element could not be removed.
 pub const RPC_S_GRP_ELT_NOT_REMOVED = 1929;
+
 /// The printer driver is not compatible with a policy enabled on your computer that blocks NT 4.0 drivers.
 pub const KM_DRIVER_BLOCKED = 1930;
+
 /// The context has expired and can no longer be used.
 pub const CONTEXT_EXPIRED = 1931;
+
 /// The current user's delegated trust creation quota has been exceeded.
 pub const PER_USER_TRUST_QUOTA_EXCEEDED = 1932;
+
 /// The total delegated trust creation quota has been exceeded.
 pub const ALL_USER_TRUST_QUOTA_EXCEEDED = 1933;
+
 /// The current user's delegated trust deletion quota has been exceeded.
 pub const USER_DELETE_TRUST_QUOTA_EXCEEDED = 1934;
+
 /// The computer you are signing into is protected by an authentication firewall. The specified account is not allowed to authenticate to the computer.
 pub const AUTHENTICATION_FIREWALL_FAILED = 1935;
+
 /// Remote connections to the Print Spooler are blocked by a policy set on your machine.
 pub const REMOTE_PRINT_CONNECTIONS_BLOCKED = 1936;
+
 /// Authentication failed because NTLM authentication has been disabled.
 pub const NTLM_BLOCKED = 1937;
+
 /// Logon Failure: EAS policy requires that the user change their password before this operation can be performed.
 pub const PASSWORD_CHANGE_REQUIRED = 1938;
+
 /// The pixel format is invalid.
 pub const INVALID_PIXEL_FORMAT = 2000;
+
 /// The specified driver is invalid.
 pub const BAD_DRIVER = 2001;
+
 /// The window style or class attribute is invalid for this operation.
 pub const INVALID_WINDOW_STYLE = 2002;
+
 /// The requested metafile operation is not supported.
 pub const METAFILE_NOT_SUPPORTED = 2003;
+
 /// The requested transformation operation is not supported.
 pub const TRANSFORM_NOT_SUPPORTED = 2004;
+
 /// The requested clipping operation is not supported.
 pub const CLIPPING_NOT_SUPPORTED = 2005;
+
 /// The specified color management module is invalid.
 pub const INVALID_CMM = 2010;
+
 /// The specified color profile is invalid.
 pub const INVALID_PROFILE = 2011;
+
 /// The specified tag was not found.
 pub const TAG_NOT_FOUND = 2012;
+
 /// A required tag is not present.
 pub const TAG_NOT_PRESENT = 2013;
+
 /// The specified tag is already present.
 pub const DUPLICATE_TAG = 2014;
+
 /// The specified color profile is not associated with the specified device.
 pub const PROFILE_NOT_ASSOCIATED_WITH_DEVICE = 2015;
+
 /// The specified color profile was not found.
 pub const PROFILE_NOT_FOUND = 2016;
+
 /// The specified color space is invalid.
 pub const INVALID_COLORSPACE = 2017;
+
 /// Image Color Management is not enabled.
 pub const ICM_NOT_ENABLED = 2018;
+
 /// There was an error while deleting the color transform.
 pub const DELETING_ICM_XFORM = 2019;
+
 /// The specified color transform is invalid.
 pub const INVALID_TRANSFORM = 2020;
+
 /// The specified transform does not match the bitmap's color space.
 pub const COLORSPACE_MISMATCH = 2021;
+
 /// The specified named color index is not present in the profile.
 pub const INVALID_COLORINDEX = 2022;
+
 /// The specified profile is intended for a device of a different type than the specified device.
 pub const PROFILE_DOES_NOT_MATCH_DEVICE = 2023;
+
 /// The network connection was made successfully, but the user had to be prompted for a password other than the one originally specified.
 pub const CONNECTED_OTHER_PASSWORD = 2108;
+
 /// The network connection was made successfully using default credentials.
 pub const CONNECTED_OTHER_PASSWORD_DEFAULT = 2109;
+
 /// The specified username is invalid.
 pub const BAD_USERNAME = 2202;
+
 /// This network connection does not exist.
 pub const NOT_CONNECTED = 2250;
+
 /// This network connection has files open or requests pending.
 pub const OPEN_FILES = 2401;
+
 /// Active connections still exist.
 pub const ACTIVE_CONNECTIONS = 2402;
+
 /// The device is in use by an active process and cannot be disconnected.
 pub const DEVICE_IN_USE = 2404;
+
 /// The specified print monitor is unknown.
 pub const UNKNOWN_PRINT_MONITOR = 3000;
+
 /// The specified printer driver is currently in use.
 pub const PRINTER_DRIVER_IN_USE = 3001;
+
 /// The spool file was not found.
 pub const SPOOL_FILE_NOT_FOUND = 3002;
+
 /// A StartDocPrinter call was not issued.
 pub const SPL_NO_STARTDOC = 3003;
+
 /// An AddJob call was not issued.
 pub const SPL_NO_ADDJOB = 3004;
+
 /// The specified print processor has already been installed.
 pub const PRINT_PROCESSOR_ALREADY_INSTALLED = 3005;
+
 /// The specified print monitor has already been installed.
 pub const PRINT_MONITOR_ALREADY_INSTALLED = 3006;
+
 /// The specified print monitor does not have the required functions.
 pub const INVALID_PRINT_MONITOR = 3007;
+
 /// The specified print monitor is currently in use.
 pub const PRINT_MONITOR_IN_USE = 3008;
+
 /// The requested operation is not allowed when there are jobs queued to the printer.
 pub const PRINTER_HAS_JOBS_QUEUED = 3009;
+
 /// The requested operation is successful. Changes will not be effective until the system is rebooted.
 pub const SUCCESS_REBOOT_REQUIRED = 3010;
+
 /// The requested operation is successful. Changes will not be effective until the service is restarted.
 pub const SUCCESS_RESTART_REQUIRED = 3011;
+
 /// No printers were found.
 pub const PRINTER_NOT_FOUND = 3012;
+
 /// The printer driver is known to be unreliable.
 pub const PRINTER_DRIVER_WARNED = 3013;
+
 /// The printer driver is known to harm the system.
 pub const PRINTER_DRIVER_BLOCKED = 3014;
+
 /// The specified printer driver package is currently in use.
 pub const PRINTER_DRIVER_PACKAGE_IN_USE = 3015;
+
 /// Unable to find a core driver package that is required by the printer driver package.
 pub const CORE_DRIVER_PACKAGE_NOT_FOUND = 3016;
+
 /// The requested operation failed. A system reboot is required to roll back changes made.
 pub const FAIL_REBOOT_REQUIRED = 3017;
+
 /// The requested operation failed. A system reboot has been initiated to roll back changes made.
 pub const FAIL_REBOOT_INITIATED = 3018;
+
 /// The specified printer driver was not found on the system and needs to be downloaded.
 pub const PRINTER_DRIVER_DOWNLOAD_NEEDED = 3019;
+
 /// The requested print job has failed to print. A print system update requires the job to be resubmitted.
 pub const PRINT_JOB_RESTART_REQUIRED = 3020;
+
 /// The printer driver does not contain a valid manifest, or contains too many manifests.
 pub const INVALID_PRINTER_DRIVER_MANIFEST = 3021;
+
 /// The specified printer cannot be shared.
 pub const PRINTER_NOT_SHAREABLE = 3022;
+
 /// The operation was paused.
 pub const REQUEST_PAUSED = 3050;
+
 /// Reissue the given operation as a cached IO operation.
 pub const IO_REISSUE_AS_CACHED = 3950;
std/os/windows/index.zig
@@ -1,33 +1,59 @@
 pub const ERROR = @import("error.zig");
 
-pub extern "advapi32" stdcallcc fn CryptAcquireContextA(phProv: &HCRYPTPROV, pszContainer: ?LPCSTR,
-    pszProvider: ?LPCSTR, dwProvType: DWORD, dwFlags: DWORD) BOOL;
+pub extern "advapi32" stdcallcc fn CryptAcquireContextA(
+    phProv: &HCRYPTPROV,
+    pszContainer: ?LPCSTR,
+    pszProvider: ?LPCSTR,
+    dwProvType: DWORD,
+    dwFlags: DWORD,
+) BOOL;
 
 pub extern "advapi32" stdcallcc fn CryptReleaseContext(hProv: HCRYPTPROV, dwFlags: DWORD) BOOL;
 
 pub extern "advapi32" stdcallcc fn CryptGenRandom(hProv: HCRYPTPROV, dwLen: DWORD, pbBuffer: &BYTE) BOOL;
 
-
 pub extern "kernel32" stdcallcc fn CloseHandle(hObject: HANDLE) BOOL;
 
-pub extern "kernel32" stdcallcc fn CreateDirectoryA(lpPathName: LPCSTR,
-    lpSecurityAttributes: ?&SECURITY_ATTRIBUTES) BOOL;
-
-pub extern "kernel32" stdcallcc fn CreateFileA(lpFileName: LPCSTR, dwDesiredAccess: DWORD,
-    dwShareMode: DWORD, lpSecurityAttributes: ?LPSECURITY_ATTRIBUTES, dwCreationDisposition: DWORD,
-        dwFlagsAndAttributes: DWORD, hTemplateFile: ?HANDLE) HANDLE;
-
-pub extern "kernel32" stdcallcc fn CreatePipe(hReadPipe: &HANDLE, hWritePipe: &HANDLE,
-    lpPipeAttributes: &const SECURITY_ATTRIBUTES, nSize: DWORD) BOOL;
-
-pub extern "kernel32" stdcallcc fn CreateProcessA(lpApplicationName: ?LPCSTR, lpCommandLine: LPSTR,
-    lpProcessAttributes: ?&SECURITY_ATTRIBUTES, lpThreadAttributes: ?&SECURITY_ATTRIBUTES, bInheritHandles: BOOL,
-    dwCreationFlags: DWORD, lpEnvironment: ?&c_void, lpCurrentDirectory: ?LPCSTR, lpStartupInfo: &STARTUPINFOA,
-    lpProcessInformation: &PROCESS_INFORMATION) BOOL;
-
-pub extern "kernel32" stdcallcc fn CreateSymbolicLinkA(lpSymlinkFileName: LPCSTR, lpTargetFileName: LPCSTR,
-    dwFlags: DWORD) BOOLEAN;
-
+pub extern "kernel32" stdcallcc fn CreateDirectoryA(
+    lpPathName: LPCSTR,
+    lpSecurityAttributes: ?&SECURITY_ATTRIBUTES,
+) BOOL;
+
+pub extern "kernel32" stdcallcc fn CreateFileA(
+    lpFileName: LPCSTR,
+    dwDesiredAccess: DWORD,
+    dwShareMode: DWORD,
+    lpSecurityAttributes: ?LPSECURITY_ATTRIBUTES,
+    dwCreationDisposition: DWORD,
+    dwFlagsAndAttributes: DWORD,
+    hTemplateFile: ?HANDLE,
+) HANDLE;
+
+pub extern "kernel32" stdcallcc fn CreatePipe(
+    hReadPipe: &HANDLE,
+    hWritePipe: &HANDLE,
+    lpPipeAttributes: &const SECURITY_ATTRIBUTES,
+    nSize: DWORD,
+) BOOL;
+
+pub extern "kernel32" stdcallcc fn CreateProcessA(
+    lpApplicationName: ?LPCSTR,
+    lpCommandLine: LPSTR,
+    lpProcessAttributes: ?&SECURITY_ATTRIBUTES,
+    lpThreadAttributes: ?&SECURITY_ATTRIBUTES,
+    bInheritHandles: BOOL,
+    dwCreationFlags: DWORD,
+    lpEnvironment: ?&c_void,
+    lpCurrentDirectory: ?LPCSTR,
+    lpStartupInfo: &STARTUPINFOA,
+    lpProcessInformation: &PROCESS_INFORMATION,
+) BOOL;
+
+pub extern "kernel32" stdcallcc fn CreateSymbolicLinkA(
+    lpSymlinkFileName: LPCSTR,
+    lpTargetFileName: LPCSTR,
+    dwFlags: DWORD,
+) BOOLEAN;
 
 pub extern "kernel32" stdcallcc fn CreateThread(lpThreadAttributes: ?LPSECURITY_ATTRIBUTES, dwStackSize: SIZE_T, lpStartAddress: LPTHREAD_START_ROUTINE, lpParameter: ?LPVOID, dwCreationFlags: DWORD, lpThreadId: ?LPDWORD) ?HANDLE;
 
@@ -55,12 +81,19 @@ pub extern "kernel32" stdcallcc fn GetModuleFileNameA(hModule: ?HMODULE, lpFilen
 
 pub extern "kernel32" stdcallcc fn GetLastError() DWORD;
 
-pub extern "kernel32" stdcallcc fn GetFileInformationByHandleEx(in_hFile: HANDLE,
-    in_FileInformationClass: FILE_INFO_BY_HANDLE_CLASS, out_lpFileInformation: &c_void,
-    in_dwBufferSize: DWORD) BOOL;
-
-pub extern "kernel32" stdcallcc fn GetFinalPathNameByHandleA(hFile: HANDLE, lpszFilePath: LPSTR,
-  cchFilePath: DWORD, dwFlags: DWORD) DWORD;
+pub extern "kernel32" stdcallcc fn GetFileInformationByHandleEx(
+    in_hFile: HANDLE,
+    in_FileInformationClass: FILE_INFO_BY_HANDLE_CLASS,
+    out_lpFileInformation: &c_void,
+    in_dwBufferSize: DWORD,
+) BOOL;
+
+pub extern "kernel32" stdcallcc fn GetFinalPathNameByHandleA(
+    hFile: HANDLE,
+    lpszFilePath: LPSTR,
+    cchFilePath: DWORD,
+    dwFlags: DWORD,
+) DWORD;
 
 pub extern "kernel32" stdcallcc fn GetProcessHeap() ?HANDLE;
 
@@ -80,21 +113,32 @@ pub extern "kernel32" stdcallcc fn HeapAlloc(hHeap: HANDLE, dwFlags: DWORD, dwBy
 
 pub extern "kernel32" stdcallcc fn HeapFree(hHeap: HANDLE, dwFlags: DWORD, lpMem: &c_void) BOOL;
 
-pub extern "kernel32" stdcallcc fn MoveFileExA(lpExistingFileName: LPCSTR, lpNewFileName: LPCSTR,
-    dwFlags: DWORD) BOOL;
-    
+pub extern "kernel32" stdcallcc fn MoveFileExA(
+    lpExistingFileName: LPCSTR,
+    lpNewFileName: LPCSTR,
+    dwFlags: DWORD,
+) BOOL;
+
 pub extern "kernel32" stdcallcc fn QueryPerformanceCounter(lpPerformanceCount: &LARGE_INTEGER) BOOL;
 
 pub extern "kernel32" stdcallcc fn QueryPerformanceFrequency(lpFrequency: &LARGE_INTEGER) BOOL;
 
 pub extern "kernel32" stdcallcc fn PathFileExists(pszPath: ?LPCTSTR) BOOL;
 
-pub extern "kernel32" stdcallcc fn ReadFile(in_hFile: HANDLE, out_lpBuffer: &c_void,
-    in_nNumberOfBytesToRead: DWORD, out_lpNumberOfBytesRead: &DWORD,
-    in_out_lpOverlapped: ?&OVERLAPPED) BOOL;
-
-pub extern "kernel32" stdcallcc fn SetFilePointerEx(in_fFile: HANDLE, in_liDistanceToMove: LARGE_INTEGER, 
-    out_opt_ldNewFilePointer: ?&LARGE_INTEGER, in_dwMoveMethod: DWORD) BOOL;
+pub extern "kernel32" stdcallcc fn ReadFile(
+    in_hFile: HANDLE,
+    out_lpBuffer: &c_void,
+    in_nNumberOfBytesToRead: DWORD,
+    out_lpNumberOfBytesRead: &DWORD,
+    in_out_lpOverlapped: ?&OVERLAPPED,
+) BOOL;
+
+pub extern "kernel32" stdcallcc fn SetFilePointerEx(
+    in_fFile: HANDLE,
+    in_liDistanceToMove: LARGE_INTEGER,
+    out_opt_ldNewFilePointer: ?&LARGE_INTEGER,
+    in_dwMoveMethod: DWORD,
+) BOOL;
 
 pub extern "kernel32" stdcallcc fn SetHandleInformation(hObject: HANDLE, dwMask: DWORD, dwFlags: DWORD) BOOL;
 
@@ -104,14 +148,18 @@ pub extern "kernel32" stdcallcc fn TerminateProcess(hProcess: HANDLE, uExitCode:
 
 pub extern "kernel32" stdcallcc fn WaitForSingleObject(hHandle: HANDLE, dwMilliseconds: DWORD) DWORD;
 
-pub extern "kernel32" stdcallcc fn WriteFile(in_hFile: HANDLE, in_lpBuffer: &const c_void,
-    in_nNumberOfBytesToWrite: DWORD, out_lpNumberOfBytesWritten: ?&DWORD,
-    in_out_lpOverlapped: ?&OVERLAPPED) BOOL;
+pub extern "kernel32" stdcallcc fn WriteFile(
+    in_hFile: HANDLE,
+    in_lpBuffer: &const c_void,
+    in_nNumberOfBytesToWrite: DWORD,
+    out_lpNumberOfBytesWritten: ?&DWORD,
+    in_out_lpOverlapped: ?&OVERLAPPED,
+) BOOL;
 
 //TODO: call unicode versions instead of relying on ANSI code page
 pub extern "kernel32" stdcallcc fn LoadLibraryA(lpLibFileName: LPCSTR) ?HMODULE;
 
-pub extern "kernel32" stdcallcc fn FreeLibrary(hModule: HMODULE) BOOL;   
+pub extern "kernel32" stdcallcc fn FreeLibrary(hModule: HMODULE) BOOL;
 
 pub extern "user32" stdcallcc fn MessageBoxA(hWnd: ?HANDLE, lpText: ?LPCTSTR, lpCaption: ?LPCTSTR, uType: UINT) c_int;
 
@@ -176,49 +224,51 @@ pub const MAX_PATH = 260;
 
 // TODO issue #305
 pub const FILE_INFO_BY_HANDLE_CLASS = u32;
-pub const FileBasicInfo                   = 0;
-pub const FileStandardInfo                = 1;
-pub const FileNameInfo                    = 2;
-pub const FileRenameInfo                  = 3;
-pub const FileDispositionInfo             = 4;
-pub const FileAllocationInfo              = 5;
-pub const FileEndOfFileInfo               = 6;
-pub const FileStreamInfo                  = 7;
-pub const FileCompressionInfo             = 8;
-pub const FileAttributeTagInfo            = 9;
-pub const FileIdBothDirectoryInfo         = 10;
-pub const FileIdBothDirectoryRestartInfo  = 11;
-pub const FileIoPriorityHintInfo          = 12;
-pub const FileRemoteProtocolInfo          = 13;
-pub const FileFullDirectoryInfo           = 14;
-pub const FileFullDirectoryRestartInfo    = 15;
-pub const FileStorageInfo                 = 16;
-pub const FileAlignmentInfo               = 17;
-pub const FileIdInfo                      = 18;
-pub const FileIdExtdDirectoryInfo         = 19;
-pub const FileIdExtdDirectoryRestartInfo  = 20;
+pub const FileBasicInfo = 0;
+pub const FileStandardInfo = 1;
+pub const FileNameInfo = 2;
+pub const FileRenameInfo = 3;
+pub const FileDispositionInfo = 4;
+pub const FileAllocationInfo = 5;
+pub const FileEndOfFileInfo = 6;
+pub const FileStreamInfo = 7;
+pub const FileCompressionInfo = 8;
+pub const FileAttributeTagInfo = 9;
+pub const FileIdBothDirectoryInfo = 10;
+pub const FileIdBothDirectoryRestartInfo = 11;
+pub const FileIoPriorityHintInfo = 12;
+pub const FileRemoteProtocolInfo = 13;
+pub const FileFullDirectoryInfo = 14;
+pub const FileFullDirectoryRestartInfo = 15;
+pub const FileStorageInfo = 16;
+pub const FileAlignmentInfo = 17;
+pub const FileIdInfo = 18;
+pub const FileIdExtdDirectoryInfo = 19;
+pub const FileIdExtdDirectoryRestartInfo = 20;
 
 pub const FILE_NAME_INFO = extern struct {
     FileNameLength: DWORD,
     FileName: [1]WCHAR,
 };
 
-
 /// Return the normalized drive name. This is the default.
 pub const FILE_NAME_NORMALIZED = 0x0;
+
 /// Return the opened file name (not normalized).
 pub const FILE_NAME_OPENED = 0x8;
 
 /// Return the path with the drive letter. This is the default.
 pub const VOLUME_NAME_DOS = 0x0;
+
 /// Return the path with a volume GUID path instead of the drive name.
 pub const VOLUME_NAME_GUID = 0x1;
+
 /// Return the path with no drive information.
 pub const VOLUME_NAME_NONE = 0x4;
+
 /// Return the path with the volume device path.
 pub const VOLUME_NAME_NT = 0x2;
 
-
 pub const SECURITY_ATTRIBUTES = extern struct {
     nLength: DWORD,
     lpSecurityDescriptor: ?&c_void,
@@ -227,7 +277,6 @@ pub const SECURITY_ATTRIBUTES = extern struct {
 pub const PSECURITY_ATTRIBUTES = &SECURITY_ATTRIBUTES;
 pub const LPSECURITY_ATTRIBUTES = &SECURITY_ATTRIBUTES;
 
-
 pub const GENERIC_READ = 0x80000000;
 pub const GENERIC_WRITE = 0x40000000;
 pub const GENERIC_EXECUTE = 0x20000000;
@@ -243,7 +292,6 @@ pub const OPEN_ALWAYS = 4;
 pub const OPEN_EXISTING = 3;
 pub const TRUNCATE_EXISTING = 5;
 
-
 pub const FILE_ATTRIBUTE_ARCHIVE = 0x20;
 pub const FILE_ATTRIBUTE_ENCRYPTED = 0x4000;
 pub const FILE_ATTRIBUTE_HIDDEN = 0x2;
std/os/windows/util.zig
@@ -7,7 +7,7 @@ const mem = std.mem;
 const BufMap = std.BufMap;
 const cstr = std.cstr;
 
-pub const WaitError = error {
+pub const WaitError = error{
     WaitAbandoned,
     WaitTimeOut,
     Unexpected,
@@ -33,7 +33,7 @@ pub fn windowsClose(handle: windows.HANDLE) void {
     assert(windows.CloseHandle(handle) != 0);
 }
 
-pub const WriteError = error {
+pub const WriteError = error{
     SystemResources,
     OperationAborted,
     IoPending,
@@ -68,20 +68,18 @@ pub fn windowsIsCygwinPty(handle: windows.HANDLE) bool {
     const size = @sizeOf(windows.FILE_NAME_INFO);
     var name_info_bytes align(@alignOf(windows.FILE_NAME_INFO)) = []u8{0} ** (size + windows.MAX_PATH);
 
-    if (windows.GetFileInformationByHandleEx(handle, windows.FileNameInfo,
-        @ptrCast(&c_void, &name_info_bytes[0]), u32(name_info_bytes.len)) == 0)
-    {
+    if (windows.GetFileInformationByHandleEx(handle, windows.FileNameInfo, @ptrCast(&c_void, &name_info_bytes[0]), u32(name_info_bytes.len)) == 0) {
         return true;
     }
 
     const name_info = @ptrCast(&const windows.FILE_NAME_INFO, &name_info_bytes[0]);
     const name_bytes = name_info_bytes[size..size + usize(name_info.FileNameLength)];
-    const name_wide  = ([]u16)(name_bytes);
-    return mem.indexOf(u16, name_wide, []u16{'m','s','y','s','-'}) != null or
-           mem.indexOf(u16, name_wide, []u16{'-','p','t','y'}) != null;
+    const name_wide = ([]u16)(name_bytes);
+    return mem.indexOf(u16, name_wide, []u16{ 'm', 's', 'y', 's', '-' }) != null or
+        mem.indexOf(u16, name_wide, []u16{ '-', 'p', 't', 'y' }) != null;
 }
 
-pub const OpenError = error {
+pub const OpenError = error{
     SharingViolation,
     PathAlreadyExists,
     FileNotFound,
@@ -92,15 +90,18 @@ pub const OpenError = error {
 };
 
 /// `file_path` needs to be copied in memory to add a null terminating byte, hence the allocator.
-pub fn windowsOpen(allocator: &mem.Allocator, file_path: []const u8, desired_access: windows.DWORD, share_mode: windows.DWORD,
-    creation_disposition: windows.DWORD, flags_and_attrs: windows.DWORD)
-    OpenError!windows.HANDLE
-{
+pub fn windowsOpen(
+    allocator: &mem.Allocator,
+    file_path: []const u8,
+    desired_access: windows.DWORD,
+    share_mode: windows.DWORD,
+    creation_disposition: windows.DWORD,
+    flags_and_attrs: windows.DWORD,
+) OpenError!windows.HANDLE {
     const path_with_null = try cstr.addNullByte(allocator, file_path);
     defer allocator.free(path_with_null);
 
-    const result = windows.CreateFileA(path_with_null.ptr, desired_access, share_mode, null, creation_disposition,
-        flags_and_attrs, null);
+    const result = windows.CreateFileA(path_with_null.ptr, desired_access, share_mode, null, creation_disposition, flags_and_attrs, null);
 
     if (result == windows.INVALID_HANDLE_VALUE) {
         const err = windows.GetLastError();
@@ -156,18 +157,16 @@ pub fn windowsLoadDll(allocator: &mem.Allocator, dll_path: []const u8) !windows.
 }
 
 pub fn windowsUnloadDll(hModule: windows.HMODULE) void {
-    assert(windows.FreeLibrary(hModule)!= 0);
+    assert(windows.FreeLibrary(hModule) != 0);
 }
 
-
 test "InvalidDll" {
     if (builtin.os != builtin.Os.windows) return;
 
     const DllName = "asdf.dll";
     const allocator = std.debug.global_allocator;
-    const handle = os.windowsLoadDll(allocator, DllName) catch  |err| {
+    const handle = os.windowsLoadDll(allocator, DllName) catch |err| {
         assert(err == error.DllNotFound);
         return;
     };
 }
-
std/os/child_process.zig
@@ -387,15 +387,12 @@ pub const ChildProcess = struct {
         const pid_err = posix.getErrno(pid_result);
         if (pid_err > 0) {
             return switch (pid_err) {
-                posix.EAGAIN,
-                posix.ENOMEM,
-                posix.ENOSYS => error.SystemResources,
+                posix.EAGAIN, posix.ENOMEM, posix.ENOSYS => error.SystemResources,
                 else => os.unexpectedErrorPosix(pid_err),
             };
         }
         if (pid_result == 0) {
             // we are the child
-
             setUpChildIo(self.stdin_behavior, stdin_pipe[0], posix.STDIN_FILENO, dev_null_fd) catch |err| forkChildErrReport(err_pipe[1], err);
             setUpChildIo(self.stdout_behavior, stdout_pipe[1], posix.STDOUT_FILENO, dev_null_fd) catch |err| forkChildErrReport(err_pipe[1], err);
             setUpChildIo(self.stderr_behavior, stderr_pipe[1], posix.STDERR_FILENO, dev_null_fd) catch |err| forkChildErrReport(err_pipe[1], err);
@@ -646,8 +643,7 @@ fn windowsCreateProcess(app_name: &u8, cmd_line: &u8, envp_ptr: ?&u8, cwd_ptr: ?
     if (windows.CreateProcessA(app_name, cmd_line, null, null, windows.TRUE, 0, @ptrCast(?&c_void, envp_ptr), cwd_ptr, lpStartupInfo, lpProcessInformation) == 0) {
         const err = windows.GetLastError();
         return switch (err) {
-            windows.ERROR.FILE_NOT_FOUND,
-            windows.ERROR.PATH_NOT_FOUND => error.FileNotFound,
+            windows.ERROR.FILE_NOT_FOUND, windows.ERROR.PATH_NOT_FOUND => error.FileNotFound,
             windows.ERROR.INVALID_PARAMETER => unreachable,
             windows.ERROR.INVALID_NAME => error.InvalidName,
             else => os.unexpectedErrorWindows(err),
@@ -745,8 +741,7 @@ fn makePipe() ![2]i32 {
     const err = posix.getErrno(posix.pipe(&fds));
     if (err > 0) {
         return switch (err) {
-            posix.EMFILE,
-            posix.ENFILE => error.SystemResources,
+            posix.EMFILE, posix.ENFILE => error.SystemResources,
             else => os.unexpectedErrorPosix(err),
         };
     }
std/os/darwin.zig
@@ -12,52 +12,71 @@ pub const STDERR_FILENO = 2;
 
 /// [MC2] no permissions
 pub const PROT_NONE = 0x00;
+
 /// [MC2] pages can be read
 pub const PROT_READ = 0x01;
+
 /// [MC2] pages can be written
 pub const PROT_WRITE = 0x02;
+
 /// [MC2] pages can be executed
 pub const PROT_EXEC = 0x04;
 
 /// allocated from memory, swap space
 pub const MAP_ANONYMOUS = 0x1000;
+
 /// map from file (default)
 pub const MAP_FILE = 0x0000;
+
 /// interpret addr exactly
 pub const MAP_FIXED = 0x0010;
+
 /// region may contain semaphores
 pub const MAP_HASSEMAPHORE = 0x0200;
+
 /// changes are private
 pub const MAP_PRIVATE = 0x0002;
+
 /// share changes
 pub const MAP_SHARED = 0x0001;
+
 /// don't cache pages for this mapping
 pub const MAP_NOCACHE = 0x0400;
+
 /// don't reserve needed swap area
 pub const MAP_NORESERVE = 0x0040;
 pub const MAP_FAILED = @maxValue(usize);
 
 /// [XSI] no hang in wait/no child to reap
 pub const WNOHANG = 0x00000001;
+
 /// [XSI] notify on stop, untraced child
 pub const WUNTRACED = 0x00000002;
 
 /// take signal on signal stack
 pub const SA_ONSTACK = 0x0001;
+
 /// restart system on signal return
 pub const SA_RESTART = 0x0002;
+
 /// reset to SIG_DFL when taking signal
 pub const SA_RESETHAND = 0x0004;
+
 /// do not generate SIGCHLD on child stop
 pub const SA_NOCLDSTOP = 0x0008;
+
 /// don't mask the signal we're delivering
 pub const SA_NODEFER = 0x0010;
+
 /// don't keep zombies around
 pub const SA_NOCLDWAIT = 0x0020;
+
 /// signal handler with SA_SIGINFO args
 pub const SA_SIGINFO = 0x0040;
+
 /// do not bounce off kernel's sigtramp
 pub const SA_USERTRAMP = 0x0100;
+
 /// signal handler with SA_SIGINFO args with 64bit   regs information
 pub const SA_64REGSET = 0x0200;
 
@@ -71,30 +90,43 @@ pub const R_OK = 4;
 
 /// open for reading only
 pub const O_RDONLY = 0x0000;
+
 /// open for writing only
 pub const O_WRONLY = 0x0001;
+
 /// open for reading and writing
 pub const O_RDWR = 0x0002;
+
 /// do not block on open or for data to become available
 pub const O_NONBLOCK = 0x0004;
+
 /// append on each write
 pub const O_APPEND = 0x0008;
+
 /// create file if it does not exist
 pub const O_CREAT = 0x0200;
+
 /// truncate size to 0
 pub const O_TRUNC = 0x0400;
+
 /// error if O_CREAT and the file exists
 pub const O_EXCL = 0x0800;
+
 /// atomically obtain a shared lock
 pub const O_SHLOCK = 0x0010;
+
 /// atomically obtain an exclusive lock
 pub const O_EXLOCK = 0x0020;
+
 /// do not follow symlinks
 pub const O_NOFOLLOW = 0x0100;
+
 /// allow open of symlinks
 pub const O_SYMLINK = 0x200000;
+
 /// descriptor requested for event notifications only
 pub const O_EVTONLY = 0x8000;
+
 /// mark as close-on-exec
 pub const O_CLOEXEC = 0x1000000;
 
@@ -126,75 +158,109 @@ pub const DT_WHT = 14;
 
 /// block specified signal set
 pub const SIG_BLOCK = 1;
+
 /// unblock specified signal set
 pub const SIG_UNBLOCK = 2;
+
 /// set specified signal set
 pub const SIG_SETMASK = 3;
 
 /// hangup
 pub const SIGHUP = 1;
+
 /// interrupt
 pub const SIGINT = 2;
+
 /// quit
 pub const SIGQUIT = 3;
+
 /// illegal instruction (not reset when caught)
 pub const SIGILL = 4;
+
 /// trace trap (not reset when caught)
 pub const SIGTRAP = 5;
+
 /// abort()
 pub const SIGABRT = 6;
+
 /// pollable event ([XSR] generated, not supported)
 pub const SIGPOLL = 7;
+
 /// compatibility
 pub const SIGIOT = SIGABRT;
+
 /// EMT instruction
 pub const SIGEMT = 7;
+
 /// floating point exception
 pub const SIGFPE = 8;
+
 /// kill (cannot be caught or ignored)
 pub const SIGKILL = 9;
+
 /// bus error
 pub const SIGBUS = 10;
+
 /// segmentation violation
 pub const SIGSEGV = 11;
+
 /// bad argument to system call
 pub const SIGSYS = 12;
+
 /// write on a pipe with no one to read it
 pub const SIGPIPE = 13;
+
 /// alarm clock
 pub const SIGALRM = 14;
+
 /// software termination signal from kill
 pub const SIGTERM = 15;
+
 /// urgent condition on IO channel
 pub const SIGURG = 16;
+
 /// sendable stop signal not from tty
 pub const SIGSTOP = 17;
+
 /// stop signal from tty
 pub const SIGTSTP = 18;
+
 /// continue a stopped process
 pub const SIGCONT = 19;
+
 /// to parent on child stop or exit
 pub const SIGCHLD = 20;
+
 /// to readers pgrp upon background tty read
 pub const SIGTTIN = 21;
+
 /// like TTIN for output if (tp->t_local&LTOSTOP)
 pub const SIGTTOU = 22;
+
 /// input/output possible signal
 pub const SIGIO = 23;
+
 /// exceeded CPU time limit
 pub const SIGXCPU = 24;
+
 /// exceeded file size limit
 pub const SIGXFSZ = 25;
+
 /// virtual time alarm
 pub const SIGVTALRM = 26;
+
 /// profiling time alarm
 pub const SIGPROF = 27;
+
 /// window size changes
 pub const SIGWINCH = 28;
+
 /// information request
 pub const SIGINFO = 29;
+
 /// user defined signal 1
 pub const SIGUSR1 = 30;
+
 /// user defined signal 2
 pub const SIGUSR2 = 31;
 
std/os/darwin_errno.zig
@@ -1,142 +1,328 @@
+/// Operation not permitted
+pub const EPERM = 1;
 
-pub const EPERM = 1; /// Operation not permitted
-pub const ENOENT = 2; /// No such file or directory
-pub const ESRCH = 3; /// No such process
-pub const EINTR = 4; /// Interrupted system call
-pub const EIO = 5; /// Input/output error
-pub const ENXIO = 6; /// Device not configured
-pub const E2BIG = 7; /// Argument list too long
-pub const ENOEXEC = 8; /// Exec format error
-pub const EBADF = 9; /// Bad file descriptor
-pub const ECHILD = 10; /// No child processes
-pub const EDEADLK = 11; /// Resource deadlock avoided
-
-pub const ENOMEM = 12; /// Cannot allocate memory
-pub const EACCES = 13; /// Permission denied
-pub const EFAULT = 14; /// Bad address
-pub const ENOTBLK = 15; /// Block device required
-pub const EBUSY = 16; /// Device / Resource busy
-pub const EEXIST = 17; /// File exists
-pub const EXDEV = 18; /// Cross-device link
-pub const ENODEV = 19; /// Operation not supported by device
-pub const ENOTDIR = 20; /// Not a directory
-pub const EISDIR = 21; /// Is a directory
-pub const EINVAL = 22; /// Invalid argument
-pub const ENFILE = 23; /// Too many open files in system
-pub const EMFILE = 24; /// Too many open files
-pub const ENOTTY = 25; /// Inappropriate ioctl for device
-pub const ETXTBSY = 26; /// Text file busy
-pub const EFBIG = 27; /// File too large
-pub const ENOSPC = 28; /// No space left on device
-pub const ESPIPE = 29; /// Illegal seek
-pub const EROFS = 30; /// Read-only file system
-pub const EMLINK = 31; /// Too many links
-pub const EPIPE = 32; /// Broken pipe
+/// No such file or directory
+pub const ENOENT = 2;
+
+/// No such process
+pub const ESRCH = 3;
+
+/// Interrupted system call
+pub const EINTR = 4;
+
+/// Input/output error
+pub const EIO = 5;
+
+/// Device not configured
+pub const ENXIO = 6;
+
+/// Argument list too long
+pub const E2BIG = 7;
+
+/// Exec format error
+pub const ENOEXEC = 8;
+
+/// Bad file descriptor
+pub const EBADF = 9;
+
+/// No child processes
+pub const ECHILD = 10;
+
+/// Resource deadlock avoided
+pub const EDEADLK = 11;
+
+/// Cannot allocate memory
+pub const ENOMEM = 12;
+
+/// Permission denied
+pub const EACCES = 13;
+
+/// Bad address
+pub const EFAULT = 14;
+
+/// Block device required
+pub const ENOTBLK = 15;
+
+/// Device / Resource busy
+pub const EBUSY = 16;
+
+/// File exists
+pub const EEXIST = 17;
+
+/// Cross-device link
+pub const EXDEV = 18;
+
+/// Operation not supported by device
+pub const ENODEV = 19;
+
+/// Not a directory
+pub const ENOTDIR = 20;
+
+/// Is a directory
+pub const EISDIR = 21;
+
+/// Invalid argument
+pub const EINVAL = 22;
+
+/// Too many open files in system
+pub const ENFILE = 23;
+
+/// Too many open files
+pub const EMFILE = 24;
+
+/// Inappropriate ioctl for device
+pub const ENOTTY = 25;
+
+/// Text file busy
+pub const ETXTBSY = 26;
+
+/// File too large
+pub const EFBIG = 27;
+
+/// No space left on device
+pub const ENOSPC = 28;
+
+/// Illegal seek
+pub const ESPIPE = 29;
+
+/// Read-only file system
+pub const EROFS = 30;
+
+/// Too many links
+pub const EMLINK = 31;
+/// Broken pipe
 
 // math software
-pub const EDOM = 33; /// Numerical argument out of domain
-pub const ERANGE = 34; /// Result too large
+pub const EPIPE = 32;
+
+/// Numerical argument out of domain
+pub const EDOM = 33;
+/// Result too large
 
 // non-blocking and interrupt i/o
-pub const EAGAIN = 35; /// Resource temporarily unavailable
-pub const EWOULDBLOCK = EAGAIN; /// Operation would block
-pub const EINPROGRESS = 36; /// Operation now in progress
-pub const EALREADY = 37; /// Operation already in progress
+pub const ERANGE = 34;
+
+/// Resource temporarily unavailable
+pub const EAGAIN = 35;
+
+/// Operation would block
+pub const EWOULDBLOCK = EAGAIN;
+
+/// Operation now in progress
+pub const EINPROGRESS = 36;
+/// Operation already in progress
 
 // ipc/network software -- argument errors
-pub const ENOTSOCK = 38; /// Socket operation on non-socket
-pub const EDESTADDRREQ = 39; /// Destination address required
-pub const EMSGSIZE = 40; /// Message too long
-pub const EPROTOTYPE = 41; /// Protocol wrong type for socket
-pub const ENOPROTOOPT = 42; /// Protocol not available
-pub const EPROTONOSUPPORT = 43; /// Protocol not supported
+pub const EALREADY = 37;
+
+/// Socket operation on non-socket
+pub const ENOTSOCK = 38;
+
+/// Destination address required
+pub const EDESTADDRREQ = 39;
+
+/// Message too long
+pub const EMSGSIZE = 40;
+
+/// Protocol wrong type for socket
+pub const EPROTOTYPE = 41;
+
+/// Protocol not available
+pub const ENOPROTOOPT = 42;
+
+/// Protocol not supported
+pub const EPROTONOSUPPORT = 43;
+
+/// Socket type not supported
+pub const ESOCKTNOSUPPORT = 44;
 
-pub const ESOCKTNOSUPPORT = 44; /// Socket type not supported
+/// Operation not supported
+pub const ENOTSUP = 45;
 
-pub const ENOTSUP = 45; /// Operation not supported
+/// Protocol family not supported
+pub const EPFNOSUPPORT = 46;
 
-pub const EPFNOSUPPORT = 46; /// Protocol family not supported
-pub const EAFNOSUPPORT = 47; /// Address family not supported by protocol family
-pub const EADDRINUSE = 48; /// Address already in use
-pub const EADDRNOTAVAIL = 49; /// Can't assign requested address
+/// Address family not supported by protocol family
+pub const EAFNOSUPPORT = 47;
+
+/// Address already in use
+pub const EADDRINUSE = 48;
+/// Can't assign requested address
 
 // ipc/network software -- operational errors
-pub const ENETDOWN = 50; /// Network is down
-pub const ENETUNREACH = 51; /// Network is unreachable
-pub const ENETRESET = 52; /// Network dropped connection on reset
-pub const ECONNABORTED = 53; /// Software caused connection abort
-pub const ECONNRESET = 54; /// Connection reset by peer
-pub const ENOBUFS = 55; /// No buffer space available
-pub const EISCONN = 56; /// Socket is already connected
-pub const ENOTCONN = 57; /// Socket is not connected
+pub const EADDRNOTAVAIL = 49;
+
+/// Network is down
+pub const ENETDOWN = 50;
+
+/// Network is unreachable
+pub const ENETUNREACH = 51;
+
+/// Network dropped connection on reset
+pub const ENETRESET = 52;
+
+/// Software caused connection abort
+pub const ECONNABORTED = 53;
+
+/// Connection reset by peer
+pub const ECONNRESET = 54;
+
+/// No buffer space available
+pub const ENOBUFS = 55;
+
+/// Socket is already connected
+pub const EISCONN = 56;
+
+/// Socket is not connected
+pub const ENOTCONN = 57;
+
+/// Can't send after socket shutdown
+pub const ESHUTDOWN = 58;
 
-pub const ESHUTDOWN = 58; /// Can't send after socket shutdown
-pub const ETOOMANYREFS = 59; /// Too many references: can't splice
+/// Too many references: can't splice
+pub const ETOOMANYREFS = 59;
 
-pub const ETIMEDOUT = 60; /// Operation timed out
-pub const ECONNREFUSED = 61; /// Connection refused
+/// Operation timed out
+pub const ETIMEDOUT = 60;
 
-pub const ELOOP = 62; /// Too many levels of symbolic links
-pub const ENAMETOOLONG = 63; /// File name too long
+/// Connection refused
+pub const ECONNREFUSED = 61;
 
-pub const EHOSTDOWN = 64; /// Host is down
-pub const EHOSTUNREACH = 65; /// No route to host
-pub const ENOTEMPTY = 66; /// Directory not empty
+/// Too many levels of symbolic links
+pub const ELOOP = 62;
+
+/// File name too long
+pub const ENAMETOOLONG = 63;
+
+/// Host is down
+pub const EHOSTDOWN = 64;
+
+/// No route to host
+pub const EHOSTUNREACH = 65;
+/// Directory not empty
 
 // quotas & mush
-pub const EPROCLIM = 67; /// Too many processes
-pub const EUSERS = 68; /// Too many users
-pub const EDQUOT = 69; /// Disc quota exceeded
+pub const ENOTEMPTY = 66;
+
+/// Too many processes
+pub const EPROCLIM = 67;
+
+/// Too many users
+pub const EUSERS = 68;
+/// Disc quota exceeded
 
 // Network File System
-pub const ESTALE = 70; /// Stale NFS file handle
-pub const EREMOTE = 71; /// Too many levels of remote in path
-pub const EBADRPC = 72; /// RPC struct is bad
-pub const ERPCMISMATCH = 73; /// RPC version wrong
-pub const EPROGUNAVAIL = 74; /// RPC prog. not avail
-pub const EPROGMISMATCH = 75; /// Program version wrong
-pub const EPROCUNAVAIL = 76; /// Bad procedure for program
+pub const EDQUOT = 69;
+
+/// Stale NFS file handle
+pub const ESTALE = 70;
+
+/// Too many levels of remote in path
+pub const EREMOTE = 71;
+
+/// RPC struct is bad
+pub const EBADRPC = 72;
+
+/// RPC version wrong
+pub const ERPCMISMATCH = 73;
+
+/// RPC prog. not avail
+pub const EPROGUNAVAIL = 74;
 
-pub const ENOLCK = 77; /// No locks available
-pub const ENOSYS = 78; /// Function not implemented
+/// Program version wrong
+pub const EPROGMISMATCH = 75;
 
-pub const EFTYPE = 79; /// Inappropriate file type or format
-pub const EAUTH = 80; /// Authentication error
-pub const ENEEDAUTH = 81; /// Need authenticator
+/// Bad procedure for program
+pub const EPROCUNAVAIL = 76;
+
+/// No locks available
+pub const ENOLCK = 77;
+
+/// Function not implemented
+pub const ENOSYS = 78;
+
+/// Inappropriate file type or format
+pub const EFTYPE = 79;
+
+/// Authentication error
+pub const EAUTH = 80;
+/// Need authenticator
 
 // Intelligent device errors
-pub const EPWROFF = 82; /// Device power is off
-pub const EDEVERR = 83; /// Device error, e.g. paper out
+pub const ENEEDAUTH = 81;
+
+/// Device power is off
+pub const EPWROFF = 82;
 
-pub const EOVERFLOW = 84; /// Value too large to be stored in data type
+/// Device error, e.g. paper out
+pub const EDEVERR = 83;
+/// Value too large to be stored in data type
 
 // Program loading errors
-pub const EBADEXEC = 85; /// Bad executable
-pub const EBADARCH = 86; /// Bad CPU type in executable
-pub const ESHLIBVERS = 87; /// Shared library version mismatch
-pub const EBADMACHO = 88; /// Malformed Macho file
+pub const EOVERFLOW = 84;
+
+/// Bad executable
+pub const EBADEXEC = 85;
+
+/// Bad CPU type in executable
+pub const EBADARCH = 86;
+
+/// Shared library version mismatch
+pub const ESHLIBVERS = 87;
+
+/// Malformed Macho file
+pub const EBADMACHO = 88;
+
+/// Operation canceled
+pub const ECANCELED = 89;
+
+/// Identifier removed
+pub const EIDRM = 90;
+
+/// No message of desired type
+pub const ENOMSG = 91;
+
+/// Illegal byte sequence
+pub const EILSEQ = 92;
+
+/// Attribute not found
+pub const ENOATTR = 93;
+
+/// Bad message
+pub const EBADMSG = 94;
+
+/// Reserved
+pub const EMULTIHOP = 95;
+
+/// No message available on STREAM
+pub const ENODATA = 96;
+
+/// Reserved
+pub const ENOLINK = 97;
+
+/// No STREAM resources
+pub const ENOSR = 98;
+
+/// Not a STREAM
+pub const ENOSTR = 99;
 
-pub const ECANCELED = 89; /// Operation canceled
+/// Protocol error
+pub const EPROTO = 100;
 
-pub const EIDRM = 90; /// Identifier removed
-pub const ENOMSG = 91; /// No message of desired type
-pub const EILSEQ = 92; /// Illegal byte sequence
-pub const ENOATTR = 93; /// Attribute not found
+/// STREAM ioctl timeout
+pub const ETIME = 101;
 
-pub const EBADMSG = 94; /// Bad message
-pub const EMULTIHOP = 95; /// Reserved
-pub const ENODATA = 96; /// No message available on STREAM
-pub const ENOLINK = 97; /// Reserved
-pub const ENOSR = 98; /// No STREAM resources
-pub const ENOSTR = 99; /// Not a STREAM
-pub const EPROTO = 100; /// Protocol error
-pub const ETIME = 101; /// STREAM ioctl timeout
+/// No such policy registered
+pub const ENOPOLICY = 103;
 
-pub const ENOPOLICY = 103; /// No such policy registered
+/// State not recoverable
+pub const ENOTRECOVERABLE = 104;
 
-pub const ENOTRECOVERABLE = 104; /// State not recoverable
-pub const EOWNERDEAD = 105; /// Previous owner died
+/// Previous owner died
+pub const EOWNERDEAD = 105;
 
-pub const EQFULL = 106; /// Interface output queue is full
-pub const ELAST = 106; /// Must be equal largest errno
+/// Interface output queue is full
+pub const EQFULL = 106;
 
+/// Must be equal largest errno
+pub const ELAST = 106;
std/os/epoch.zig
@@ -1,26 +1,26 @@
 /// Epoch reference times in terms of their difference from
 ///   posix epoch in seconds.
-pub const posix       = 0;                //Jan 01, 1970 AD
-pub const dos         = 315532800;        //Jan 01, 1980 AD
-pub const ios         = 978307200;        //Jan 01, 2001 AD
-pub const openvms     = -3506716800;      //Nov 17, 1858 AD
-pub const zos         = -2208988800;      //Jan 01, 1900 AD
-pub const windows     = -11644473600;     //Jan 01, 1601 AD
-pub const amiga       = 252460800;        //Jan 01, 1978 AD
-pub const pickos      = -63244800;        //Dec 31, 1967 AD
-pub const gps         = 315964800;        //Jan 06, 1980 AD
-pub const clr         = -62135769600;      //Jan 01, 0001 AD
+pub const posix = 0; //Jan 01, 1970 AD
+pub const dos = 315532800; //Jan 01, 1980 AD
+pub const ios = 978307200; //Jan 01, 2001 AD
+pub const openvms = -3506716800; //Nov 17, 1858 AD
+pub const zos = -2208988800; //Jan 01, 1900 AD
+pub const windows = -11644473600; //Jan 01, 1601 AD
+pub const amiga = 252460800; //Jan 01, 1978 AD
+pub const pickos = -63244800; //Dec 31, 1967 AD
+pub const gps = 315964800; //Jan 06, 1980 AD
+pub const clr = -62135769600; //Jan 01, 0001 AD
 
-pub const unix      = posix;
-pub const android   = posix;
-pub const os2       = dos;
-pub const bios      = dos;
-pub const vfat      = dos;
-pub const ntfs      = windows;
-pub const ntp       = zos;
-pub const jbase     = pickos;
-pub const aros      = amiga;
-pub const morphos   = amiga;
-pub const brew      = gps;
-pub const atsc      = gps;
-pub const go        = clr;
\ No newline at end of file
+pub const unix = posix;
+pub const android = posix;
+pub const os2 = dos;
+pub const bios = dos;
+pub const vfat = dos;
+pub const ntfs = windows;
+pub const ntp = zos;
+pub const jbase = pickos;
+pub const aros = amiga;
+pub const morphos = amiga;
+pub const brew = gps;
+pub const atsc = gps;
+pub const go = clr;
std/os/file.zig
@@ -21,12 +21,18 @@ pub const File = struct {
     /// Call close to clean up.
     pub fn openRead(allocator: &mem.Allocator, path: []const u8) OpenError!File {
         if (is_posix) {
-            const flags = posix.O_LARGEFILE|posix.O_RDONLY;
+            const flags = posix.O_LARGEFILE | posix.O_RDONLY;
             const fd = try os.posixOpen(allocator, path, flags, 0);
             return openHandle(fd);
         } else if (is_windows) {
-            const handle = try os.windowsOpen(allocator, path, windows.GENERIC_READ, windows.FILE_SHARE_READ,
-                windows.OPEN_EXISTING, windows.FILE_ATTRIBUTE_NORMAL);
+            const handle = try os.windowsOpen(
+                allocator,
+                path,
+                windows.GENERIC_READ,
+                windows.FILE_SHARE_READ,
+                windows.OPEN_EXISTING,
+                windows.FILE_ATTRIBUTE_NORMAL,
+            );
             return openHandle(handle);
         } else {
             @compileError("TODO implement openRead for this OS");
@@ -36,7 +42,6 @@ pub const File = struct {
     /// Calls `openWriteMode` with os.default_file_mode for the mode.
     pub fn openWrite(allocator: &mem.Allocator, path: []const u8) OpenError!File {
         return openWriteMode(allocator, path, os.default_file_mode);
-
     }
 
     /// If the path does not exist it will be created.
@@ -45,18 +50,22 @@ pub const File = struct {
     /// Call close to clean up.
     pub fn openWriteMode(allocator: &mem.Allocator, path: []const u8, file_mode: os.FileMode) OpenError!File {
         if (is_posix) {
-            const flags = posix.O_LARGEFILE|posix.O_WRONLY|posix.O_CREAT|posix.O_CLOEXEC|posix.O_TRUNC;
+            const flags = posix.O_LARGEFILE | posix.O_WRONLY | posix.O_CREAT | posix.O_CLOEXEC | posix.O_TRUNC;
             const fd = try os.posixOpen(allocator, path, flags, file_mode);
             return openHandle(fd);
         } else if (is_windows) {
-            const handle = try os.windowsOpen(allocator, path, windows.GENERIC_WRITE,
-                windows.FILE_SHARE_WRITE|windows.FILE_SHARE_READ|windows.FILE_SHARE_DELETE,
-                windows.CREATE_ALWAYS, windows.FILE_ATTRIBUTE_NORMAL);
+            const handle = try os.windowsOpen(
+                allocator,
+                path,
+                windows.GENERIC_WRITE,
+                windows.FILE_SHARE_WRITE | windows.FILE_SHARE_READ | windows.FILE_SHARE_DELETE,
+                windows.CREATE_ALWAYS,
+                windows.FILE_ATTRIBUTE_NORMAL,
+            );
             return openHandle(handle);
         } else {
             @compileError("TODO implement openWriteMode for this OS");
         }
-
     }
 
     /// If the path does not exist it will be created.
@@ -65,24 +74,26 @@ pub const File = struct {
     /// Call close to clean up.
     pub fn openWriteNoClobber(allocator: &mem.Allocator, path: []const u8, file_mode: os.FileMode) OpenError!File {
         if (is_posix) {
-            const flags = posix.O_LARGEFILE|posix.O_WRONLY|posix.O_CREAT|posix.O_CLOEXEC|posix.O_EXCL;
+            const flags = posix.O_LARGEFILE | posix.O_WRONLY | posix.O_CREAT | posix.O_CLOEXEC | posix.O_EXCL;
             const fd = try os.posixOpen(allocator, path, flags, file_mode);
             return openHandle(fd);
         } else if (is_windows) {
-            const handle = try os.windowsOpen(allocator, path, windows.GENERIC_WRITE,
-                windows.FILE_SHARE_WRITE|windows.FILE_SHARE_READ|windows.FILE_SHARE_DELETE,
-                windows.CREATE_NEW, windows.FILE_ATTRIBUTE_NORMAL);
+            const handle = try os.windowsOpen(
+                allocator,
+                path,
+                windows.GENERIC_WRITE,
+                windows.FILE_SHARE_WRITE | windows.FILE_SHARE_READ | windows.FILE_SHARE_DELETE,
+                windows.CREATE_NEW,
+                windows.FILE_ATTRIBUTE_NORMAL,
+            );
             return openHandle(handle);
         } else {
             @compileError("TODO implement openWriteMode for this OS");
         }
-
     }
 
     pub fn openHandle(handle: os.FileHandle) File {
-        return File {
-            .handle = handle,
-        };
+        return File{ .handle = handle };
     }
 
     pub fn access(allocator: &mem.Allocator, path: []const u8, file_mode: os.FileMode) !bool {
@@ -217,7 +228,7 @@ pub const File = struct {
                 return result;
             },
             Os.windows => {
-                var pos : windows.LARGE_INTEGER = undefined;
+                var pos: windows.LARGE_INTEGER = undefined;
                 if (windows.SetFilePointerEx(self.handle, 0, &pos, windows.FILE_CURRENT) == 0) {
                     const err = windows.GetLastError();
                     return switch (err) {
@@ -268,7 +279,7 @@ pub const File = struct {
         }
     }
 
-    pub const ModeError = error {
+    pub const ModeError = error{
         BadFd,
         SystemResources,
         Unexpected,
@@ -296,7 +307,7 @@ pub const File = struct {
         }
     }
 
-    pub const ReadError = error {};
+    pub const ReadError = error{};
 
     pub fn read(self: &File, buffer: []u8) !usize {
         if (is_posix) {
@@ -306,12 +317,12 @@ pub const File = struct {
                 const read_err = posix.getErrno(amt_read);
                 if (read_err > 0) {
                     switch (read_err) {
-                        posix.EINTR  => continue,
+                        posix.EINTR => continue,
                         posix.EINVAL => unreachable,
                         posix.EFAULT => unreachable,
-                        posix.EBADF  => return error.BadFd,
-                        posix.EIO    => return error.Io,
-                        else          => return os.unexpectedErrorPosix(read_err),
+                        posix.EBADF => return error.BadFd,
+                        posix.EIO => return error.Io,
+                        else => return os.unexpectedErrorPosix(read_err),
                     }
                 }
                 if (amt_read == 0) return index;
std/os/get_user_id.zig
@@ -74,7 +74,7 @@ pub fn posixGetUserInfo(name: []const u8) !UserInfo {
                     '\n' => return error.CorruptPasswordFile,
                     else => {
                         const digit = switch (byte) {
-                            '0' ... '9' => byte - '0',
+                            '0'...'9' => byte - '0',
                             else => return error.CorruptPasswordFile,
                         };
                         if (@mulWithOverflow(u32, uid, 10, &uid)) return error.CorruptPasswordFile;
@@ -83,14 +83,14 @@ pub fn posixGetUserInfo(name: []const u8) !UserInfo {
                 },
                 State.ReadGroupId => switch (byte) {
                     '\n', ':' => {
-                        return UserInfo {
+                        return UserInfo{
                             .uid = uid,
                             .gid = gid,
                         };
                     },
                     else => {
                         const digit = switch (byte) {
-                            '0' ... '9' => byte - '0',
+                            '0'...'9' => byte - '0',
                             else => return error.CorruptPasswordFile,
                         };
                         if (@mulWithOverflow(u32, gid, 10, &gid)) return error.CorruptPasswordFile;
std/os/index.zig
@@ -3,8 +3,7 @@ const builtin = @import("builtin");
 const Os = builtin.Os;
 const is_windows = builtin.os == Os.windows;
 const is_posix = switch (builtin.os) {
-    builtin.Os.linux,
-    builtin.Os.macosx => true,
+    builtin.Os.linux, builtin.Os.macosx => true,
     else => false,
 };
 const os = this;
@@ -27,8 +26,7 @@ pub const linux = @import("linux/index.zig");
 pub const zen = @import("zen.zig");
 pub const posix = switch (builtin.os) {
     Os.linux => linux,
-    Os.macosx,
-    Os.ios => darwin,
+    Os.macosx, Os.ios => darwin,
     Os.zen => zen,
     else => @compileError("Unsupported OS"),
 };
@@ -112,8 +110,7 @@ pub fn getRandomBytes(buf: []u8) !void {
             }
             return;
         },
-        Os.macosx,
-        Os.ios => {
+        Os.macosx, Os.ios => {
             const fd = try posixOpenC(c"/dev/urandom", posix.O_RDONLY | posix.O_CLOEXEC, 0);
             defer close(fd);
 
@@ -175,9 +172,7 @@ pub fn abort() noreturn {
         c.abort();
     }
     switch (builtin.os) {
-        Os.linux,
-        Os.macosx,
-        Os.ios => {
+        Os.linux, Os.macosx, Os.ios => {
             _ = posix.raise(posix.SIGABRT);
             _ = posix.raise(posix.SIGKILL);
             while (true) {}
@@ -199,9 +194,7 @@ pub fn exit(status: u8) noreturn {
         c.exit(status);
     }
     switch (builtin.os) {
-        Os.linux,
-        Os.macosx,
-        Os.ios => {
+        Os.linux, Os.macosx, Os.ios => {
             posix.exit(status);
         },
         Os.windows => {
@@ -250,14 +243,12 @@ pub fn posixRead(fd: i32, buf: []u8) !void {
         if (err > 0) {
             return switch (err) {
                 posix.EINTR => continue,
-                posix.EINVAL,
-                posix.EFAULT => unreachable,
+                posix.EINVAL, posix.EFAULT => unreachable,
                 posix.EAGAIN => error.WouldBlock,
                 posix.EBADF => error.FileClosed,
                 posix.EIO => error.InputOutput,
                 posix.EISDIR => error.IsDir,
-                posix.ENOBUFS,
-                posix.ENOMEM => error.SystemResources,
+                posix.ENOBUFS, posix.ENOMEM => error.SystemResources,
                 else => unexpectedErrorPosix(err),
             };
         }
@@ -292,8 +283,7 @@ pub fn posixWrite(fd: i32, bytes: []const u8) !void {
         if (write_err > 0) {
             return switch (write_err) {
                 posix.EINTR => continue,
-                posix.EINVAL,
-                posix.EFAULT => unreachable,
+                posix.EINVAL, posix.EFAULT => unreachable,
                 posix.EAGAIN => PosixWriteError.WouldBlock,
                 posix.EBADF => PosixWriteError.FileClosed,
                 posix.EDESTADDRREQ => PosixWriteError.DestinationAddressRequired,
@@ -349,8 +339,7 @@ pub fn posixOpenC(file_path: &const u8, flags: u32, perm: usize) !i32 {
                 posix.EFAULT => unreachable,
                 posix.EINVAL => unreachable,
                 posix.EACCES => return PosixOpenError.AccessDenied,
-                posix.EFBIG,
-                posix.EOVERFLOW => return PosixOpenError.FileTooBig,
+                posix.EFBIG, posix.EOVERFLOW => return PosixOpenError.FileTooBig,
                 posix.EISDIR => return PosixOpenError.IsDir,
                 posix.ELOOP => return PosixOpenError.SymLinkLoop,
                 posix.EMFILE => return PosixOpenError.ProcessFdQuotaExceeded,
@@ -375,8 +364,7 @@ pub fn posixDup2(old_fd: i32, new_fd: i32) !void {
         const err = posix.getErrno(posix.dup2(old_fd, new_fd));
         if (err > 0) {
             return switch (err) {
-                posix.EBUSY,
-                posix.EINTR => continue,
+                posix.EBUSY, posix.EINTR => continue,
                 posix.EMFILE => error.ProcessFdQuotaExceeded,
                 posix.EINVAL => unreachable,
                 else => unexpectedErrorPosix(err),
@@ -493,17 +481,10 @@ fn posixExecveErrnoToErr(err: usize) PosixExecveError {
     assert(err > 0);
     return switch (err) {
         posix.EFAULT => unreachable,
-        posix.E2BIG,
-        posix.EMFILE,
-        posix.ENAMETOOLONG,
-        posix.ENFILE,
-        posix.ENOMEM => error.SystemResources,
-        posix.EACCES,
-        posix.EPERM => error.AccessDenied,
-        posix.EINVAL,
-        posix.ENOEXEC => error.InvalidExe,
-        posix.EIO,
-        posix.ELOOP => error.FileSystem,
+        posix.E2BIG, posix.EMFILE, posix.ENAMETOOLONG, posix.ENFILE, posix.ENOMEM => error.SystemResources,
+        posix.EACCES, posix.EPERM => error.AccessDenied,
+        posix.EINVAL, posix.ENOEXEC => error.InvalidExe,
+        posix.EIO, posix.ELOOP => error.FileSystem,
         posix.EISDIR => error.IsDir,
         posix.ENOENT => error.FileNotFound,
         posix.ENOTDIR => error.NotDir,
@@ -717,10 +698,8 @@ pub fn symLinkPosix(allocator: &Allocator, existing_path: []const u8, new_path:
     const err = posix.getErrno(posix.symlink(existing_buf.ptr, new_buf.ptr));
     if (err > 0) {
         return switch (err) {
-            posix.EFAULT,
-            posix.EINVAL => unreachable,
-            posix.EACCES,
-            posix.EPERM => error.AccessDenied,
+            posix.EFAULT, posix.EINVAL => unreachable,
+            posix.EACCES, posix.EPERM => error.AccessDenied,
             posix.EDQUOT => error.DiskQuota,
             posix.EEXIST => error.PathAlreadyExists,
             posix.EIO => error.FileSystem,
@@ -787,8 +766,7 @@ pub fn deleteFileWindows(allocator: &Allocator, file_path: []const u8) !void {
         return switch (err) {
             windows.ERROR.FILE_NOT_FOUND => error.FileNotFound,
             windows.ERROR.ACCESS_DENIED => error.AccessDenied,
-            windows.ERROR.FILENAME_EXCED_RANGE,
-            windows.ERROR.INVALID_PARAMETER => error.NameTooLong,
+            windows.ERROR.FILENAME_EXCED_RANGE, windows.ERROR.INVALID_PARAMETER => error.NameTooLong,
             else => unexpectedErrorWindows(err),
         };
     }
@@ -804,11 +782,9 @@ pub fn deleteFilePosix(allocator: &Allocator, file_path: []const u8) !void {
     const err = posix.getErrno(posix.unlink(buf.ptr));
     if (err > 0) {
         return switch (err) {
-            posix.EACCES,
-            posix.EPERM => error.AccessDenied,
+            posix.EACCES, posix.EPERM => error.AccessDenied,
             posix.EBUSY => error.FileBusy,
-            posix.EFAULT,
-            posix.EINVAL => unreachable,
+            posix.EFAULT, posix.EINVAL => unreachable,
             posix.EIO => error.FileSystem,
             posix.EISDIR => error.IsDir,
             posix.ELOOP => error.SymLinkLoop,
@@ -948,12 +924,10 @@ pub fn rename(allocator: &Allocator, old_path: []const u8, new_path: []const u8)
         const err = posix.getErrno(posix.rename(old_buf.ptr, new_buf.ptr));
         if (err > 0) {
             return switch (err) {
-                posix.EACCES,
-                posix.EPERM => error.AccessDenied,
+                posix.EACCES, posix.EPERM => error.AccessDenied,
                 posix.EBUSY => error.FileBusy,
                 posix.EDQUOT => error.DiskQuota,
-                posix.EFAULT,
-                posix.EINVAL => unreachable,
+                posix.EFAULT, posix.EINVAL => unreachable,
                 posix.EISDIR => error.IsDir,
                 posix.ELOOP => error.SymLinkLoop,
                 posix.EMLINK => error.LinkQuotaExceeded,
@@ -962,8 +936,7 @@ pub fn rename(allocator: &Allocator, old_path: []const u8, new_path: []const u8)
                 posix.ENOTDIR => error.NotDir,
                 posix.ENOMEM => error.SystemResources,
                 posix.ENOSPC => error.NoSpaceLeft,
-                posix.EEXIST,
-                posix.ENOTEMPTY => error.PathAlreadyExists,
+                posix.EEXIST, posix.ENOTEMPTY => error.PathAlreadyExists,
                 posix.EROFS => error.ReadOnlyFileSystem,
                 posix.EXDEV => error.RenameAcrossMountPoints,
                 else => unexpectedErrorPosix(err),
@@ -1001,8 +974,7 @@ pub fn makeDirPosix(allocator: &Allocator, dir_path: []const u8) !void {
     const err = posix.getErrno(posix.mkdir(path_buf.ptr, 0o755));
     if (err > 0) {
         return switch (err) {
-            posix.EACCES,
-            posix.EPERM => error.AccessDenied,
+            posix.EACCES, posix.EPERM => error.AccessDenied,
             posix.EDQUOT => error.DiskQuota,
             posix.EEXIST => error.PathAlreadyExists,
             posix.EFAULT => unreachable,
@@ -1065,18 +1037,15 @@ pub fn deleteDir(allocator: &Allocator, dir_path: []const u8) !void {
     const err = posix.getErrno(posix.rmdir(path_buf.ptr));
     if (err > 0) {
         return switch (err) {
-            posix.EACCES,
-            posix.EPERM => error.AccessDenied,
+            posix.EACCES, posix.EPERM => error.AccessDenied,
             posix.EBUSY => error.FileBusy,
-            posix.EFAULT,
-            posix.EINVAL => unreachable,
+            posix.EFAULT, posix.EINVAL => unreachable,
             posix.ELOOP => error.SymLinkLoop,
             posix.ENAMETOOLONG => error.NameTooLong,
             posix.ENOENT => error.FileNotFound,
             posix.ENOMEM => error.SystemResources,
             posix.ENOTDIR => error.NotDir,
-            posix.EEXIST,
-            posix.ENOTEMPTY => error.DirNotEmpty,
+            posix.EEXIST, posix.ENOTEMPTY => error.DirNotEmpty,
             posix.EROFS => error.ReadOnlyFileSystem,
             else => unexpectedErrorPosix(err),
         };
@@ -1128,7 +1097,8 @@ pub fn deleteTree(allocator: &Allocator, full_path: []const u8) DeleteTreeError!
             error.NotDir,
             error.FileSystem,
             error.FileBusy,
-            error.Unexpected => return err,
+            error.Unexpected,
+            => return err,
         }
         {
             var dir = Dir.open(allocator, full_path) catch |err| switch (err) {
@@ -1152,7 +1122,8 @@ pub fn deleteTree(allocator: &Allocator, full_path: []const u8) DeleteTreeError!
                 error.SystemResources,
                 error.NoSpaceLeft,
                 error.PathAlreadyExists,
-                error.Unexpected => return err,
+                error.Unexpected,
+                => return err,
             };
             defer dir.close();
 
@@ -1182,8 +1153,7 @@ pub const Dir = struct {
     end_index: usize,
 
     const darwin_seek_t = switch (builtin.os) {
-        Os.macosx,
-        Os.ios => i64,
+        Os.macosx, Os.ios => i64,
         else => void,
     };
 
@@ -1208,13 +1178,16 @@ pub const Dir = struct {
         const fd = switch (builtin.os) {
             Os.windows => @compileError("TODO support Dir.open for windows"),
             Os.linux => try posixOpen(allocator, dir_path, posix.O_RDONLY | posix.O_DIRECTORY | posix.O_CLOEXEC, 0),
-            Os.macosx,
-            Os.ios => try posixOpen(allocator, dir_path, posix.O_RDONLY | posix.O_NONBLOCK | posix.O_DIRECTORY | posix.O_CLOEXEC, 0),
+            Os.macosx, Os.ios => try posixOpen(
+                allocator,
+                dir_path,
+                posix.O_RDONLY | posix.O_NONBLOCK | posix.O_DIRECTORY | posix.O_CLOEXEC,
+                0,
+            ),
             else => @compileError("Dir.open is not supported for this platform"),
         };
         const darwin_seek_init = switch (builtin.os) {
-            Os.macosx,
-            Os.ios => 0,
+            Os.macosx, Os.ios => 0,
             else => {},
         };
         return Dir{
@@ -1237,8 +1210,7 @@ pub const Dir = struct {
     pub fn next(self: &Dir) !?Entry {
         switch (builtin.os) {
             Os.linux => return self.nextLinux(),
-            Os.macosx,
-            Os.ios => return self.nextDarwin(),
+            Os.macosx, Os.ios => return self.nextDarwin(),
             Os.windows => return self.nextWindows(),
             else => @compileError("Dir.next not supported on " ++ @tagName(builtin.os)),
         }
@@ -1256,9 +1228,7 @@ pub const Dir = struct {
                     const err = posix.getErrno(result);
                     if (err > 0) {
                         switch (err) {
-                            posix.EBADF,
-                            posix.EFAULT,
-                            posix.ENOTDIR => unreachable,
+                            posix.EBADF, posix.EFAULT, posix.ENOTDIR => unreachable,
                             posix.EINVAL => {
                                 self.buf = try self.allocator.realloc(u8, self.buf, self.buf.len * 2);
                                 continue;
@@ -1317,9 +1287,7 @@ pub const Dir = struct {
                     const err = posix.getErrno(result);
                     if (err > 0) {
                         switch (err) {
-                            posix.EBADF,
-                            posix.EFAULT,
-                            posix.ENOTDIR => unreachable,
+                            posix.EBADF, posix.EFAULT, posix.ENOTDIR => unreachable,
                             posix.EINVAL => {
                                 self.buf = try self.allocator.realloc(u8, self.buf, self.buf.len * 2);
                                 continue;
@@ -1402,8 +1370,7 @@ pub fn readLink(allocator: &Allocator, pathname: []const u8) ![]u8 {
         if (err > 0) {
             return switch (err) {
                 posix.EACCES => error.AccessDenied,
-                posix.EFAULT,
-                posix.EINVAL => unreachable,
+                posix.EFAULT, posix.EINVAL => unreachable,
                 posix.EIO => error.FileSystem,
                 posix.ELOOP => error.SymLinkLoop,
                 posix.ENAMETOOLONG => error.NameTooLong,
@@ -1545,8 +1512,7 @@ pub const ArgIteratorWindows = struct {
             const byte = self.cmd_line[self.index];
             switch (byte) {
                 0 => return null,
-                ' ',
-                '\t' => continue,
+                ' ', '\t' => continue,
                 else => break,
             }
         }
@@ -1560,8 +1526,7 @@ pub const ArgIteratorWindows = struct {
             const byte = self.cmd_line[self.index];
             switch (byte) {
                 0 => return false,
-                ' ',
-                '\t' => continue,
+                ' ', '\t' => continue,
                 else => break,
             }
         }
@@ -1580,8 +1545,7 @@ pub const ArgIteratorWindows = struct {
                 '\\' => {
                     backslash_count += 1;
                 },
-                ' ',
-                '\t' => {
+                ' ', '\t' => {
                     if (self.seen_quote_count % 2 == 0 or self.seen_quote_count == self.quote_count) {
                         return true;
                     }
@@ -1621,8 +1585,7 @@ pub const ArgIteratorWindows = struct {
                 '\\' => {
                     backslash_count += 1;
                 },
-                ' ',
-                '\t' => {
+                ' ', '\t' => {
                     try self.emitBackslashes(&buf, backslash_count);
                     backslash_count = 0;
                     if (self.seen_quote_count % 2 == 1 and self.seen_quote_count != self.quote_count) {
@@ -1840,8 +1803,7 @@ pub fn openSelfExe() !os.File {
             var fixed_allocator = std.heap.FixedBufferAllocator.init(fixed_buffer_mem[0..]);
             return os.File.openRead(&fixed_allocator.allocator, proc_file_path);
         },
-        Os.macosx,
-        Os.ios => {
+        Os.macosx, Os.ios => {
             var fixed_buffer_mem: [darwin.PATH_MAX * 2]u8 = undefined;
             var fixed_allocator = std.heap.FixedBufferAllocator.init(fixed_buffer_mem[0..]);
             const self_exe_path = try selfExePath(&fixed_allocator.allocator);
@@ -1853,9 +1815,7 @@ pub fn openSelfExe() !os.File {
 
 test "openSelfExe" {
     switch (builtin.os) {
-        Os.linux,
-        Os.macosx,
-        Os.ios => (try openSelfExe()).close(),
+        Os.linux, Os.macosx, Os.ios => (try openSelfExe()).close(),
         else => return, // Unsupported OS.
     }
 }
@@ -1893,8 +1853,7 @@ pub fn selfExePath(allocator: &mem.Allocator) ![]u8 {
                 try out_path.resize(new_len);
             }
         },
-        Os.macosx,
-        Os.ios => {
+        Os.macosx, Os.ios => {
             var u32_len: u32 = 0;
             const ret1 = c._NSGetExecutablePath(undefined, &u32_len);
             assert(ret1 != 0);
@@ -1922,9 +1881,7 @@ pub fn selfExeDirPath(allocator: &mem.Allocator) ![]u8 {
             const dir = path.dirname(full_exe_path);
             return allocator.shrink(u8, full_exe_path, dir.len);
         },
-        Os.windows,
-        Os.macosx,
-        Os.ios => {
+        Os.windows, Os.macosx, Os.ios => {
             const self_exe_path = try selfExePath(allocator);
             errdefer allocator.free(self_exe_path);
             const dirname = os.path.dirname(self_exe_path);
@@ -1981,8 +1938,7 @@ pub fn posixSocket(domain: u32, socket_type: u32, protocol: u32) !i32 {
         posix.EINVAL => return PosixSocketError.ProtocolFamilyNotAvailable,
         posix.EMFILE => return PosixSocketError.ProcessFdQuotaExceeded,
         posix.ENFILE => return PosixSocketError.SystemFdQuotaExceeded,
-        posix.ENOBUFS,
-        posix.ENOMEM => return PosixSocketError.SystemResources,
+        posix.ENOBUFS, posix.ENOMEM => return PosixSocketError.SystemResources,
         posix.EPROTONOSUPPORT => return PosixSocketError.ProtocolNotSupported,
         else => return unexpectedErrorPosix(err),
     }
@@ -1990,7 +1946,7 @@ pub fn posixSocket(domain: u32, socket_type: u32, protocol: u32) !i32 {
 
 pub const PosixBindError = error{
     /// The address is protected, and the user is not the superuser.
-    /// For UNIX domain sockets: Search permission is denied on  a  component 
+    /// For UNIX domain sockets: Search permission is denied on  a  component
     /// of  the  path  prefix.
     AccessDenied,
 
@@ -2151,8 +2107,7 @@ pub fn posixAccept(fd: i32, addr: &posix.sockaddr, flags: u32) PosixAcceptError!
             posix.EINVAL => return PosixAcceptError.InvalidSyscall,
             posix.EMFILE => return PosixAcceptError.ProcessFdQuotaExceeded,
             posix.ENFILE => return PosixAcceptError.SystemFdQuotaExceeded,
-            posix.ENOBUFS,
-            posix.ENOMEM => return PosixAcceptError.SystemResources,
+            posix.ENOBUFS, posix.ENOMEM => return PosixAcceptError.SystemResources,
             posix.ENOTSOCK => return PosixAcceptError.FileDescriptorNotASocket,
             posix.EOPNOTSUPP => return PosixAcceptError.OperationNotSupported,
             posix.EPROTO => return PosixAcceptError.ProtocolFailure,
@@ -2363,8 +2318,7 @@ pub fn posixConnectAsync(sockfd: i32, sockaddr: &const posix.sockaddr) PosixConn
         const rc = posix.connect(sockfd, sockaddr, @sizeOf(posix.sockaddr));
         const err = posix.getErrno(rc);
         switch (err) {
-            0,
-            posix.EINPROGRESS => return,
+            0, posix.EINPROGRESS => return,
             else => return unexpectedErrorPosix(err),
 
             posix.EACCES => return PosixConnectError.PermissionDenied,
@@ -2416,7 +2370,7 @@ pub fn posixGetSockOptConnectError(sockfd: i32) PosixConnectError!void {
         },
         else => return unexpectedErrorPosix(err),
         posix.EBADF => unreachable, // The argument sockfd is not a valid file descriptor.
-        posix.EFAULT => unreachable, // The address pointed to by optval or optlen is not in a valid part of the process address space. 
+        posix.EFAULT => unreachable, // The address pointed to by optval or optlen is not in a valid part of the process address space.
         posix.EINVAL => unreachable,
         posix.ENOPROTOOPT => unreachable, // The option is unknown at the level indicated.
         posix.ENOTSOCK => unreachable, // The file descriptor sockfd does not refer to a socket.
@@ -2427,11 +2381,13 @@ pub const Thread = struct {
     data: Data,
 
     pub const use_pthreads = is_posix and builtin.link_libc;
-    const Data = if (use_pthreads) struct {
-        handle: c.pthread_t,
-        stack_addr: usize,
-        stack_len: usize,
-    } else switch (builtin.os) {
+    const Data = if (use_pthreads)
+        struct {
+            handle: c.pthread_t,
+            stack_addr: usize,
+            stack_len: usize,
+        }
+    else switch (builtin.os) {
         builtin.Os.linux => struct {
             pid: i32,
             stack_addr: usize,
std/os/path.zig
@@ -55,9 +55,7 @@ test "os.path.join" {
     assert(mem.eql(u8, try joinWindows(debug.global_allocator, "c:\\", "a", "b\\", "c"), "c:\\a\\b\\c"));
     assert(mem.eql(u8, try joinWindows(debug.global_allocator, "c:\\a\\", "b\\", "c"), "c:\\a\\b\\c"));
 
-    assert(mem.eql(u8, try joinWindows(debug.global_allocator,
-        "c:\\home\\andy\\dev\\zig\\build\\lib\\zig\\std", "io.zig"),
-        "c:\\home\\andy\\dev\\zig\\build\\lib\\zig\\std\\io.zig"));
+    assert(mem.eql(u8, try joinWindows(debug.global_allocator, "c:\\home\\andy\\dev\\zig\\build\\lib\\zig\\std", "io.zig"), "c:\\home\\andy\\dev\\zig\\build\\lib\\zig\\std\\io.zig"));
 
     assert(mem.eql(u8, try joinPosix(debug.global_allocator, "/a/b", "c"), "/a/b/c"));
     assert(mem.eql(u8, try joinPosix(debug.global_allocator, "/a/b/", "c"), "/a/b/c"));
@@ -65,8 +63,7 @@ test "os.path.join" {
     assert(mem.eql(u8, try joinPosix(debug.global_allocator, "/", "a", "b/", "c"), "/a/b/c"));
     assert(mem.eql(u8, try joinPosix(debug.global_allocator, "/a/", "b/", "c"), "/a/b/c"));
 
-    assert(mem.eql(u8, try joinPosix(debug.global_allocator, "/home/andy/dev/zig/build/lib/zig/std", "io.zig"),
-        "/home/andy/dev/zig/build/lib/zig/std/io.zig"));
+    assert(mem.eql(u8, try joinPosix(debug.global_allocator, "/home/andy/dev/zig/build/lib/zig/std", "io.zig"), "/home/andy/dev/zig/build/lib/zig/std/io.zig"));
 }
 
 pub fn isAbsolute(path: []const u8) bool {
@@ -151,22 +148,22 @@ pub const WindowsPath = struct {
 
 pub fn windowsParsePath(path: []const u8) WindowsPath {
     if (path.len >= 2 and path[1] == ':') {
-        return WindowsPath {
+        return WindowsPath{
             .is_abs = isAbsoluteWindows(path),
             .kind = WindowsPath.Kind.Drive,
             .disk_designator = path[0..2],
         };
     }
     if (path.len >= 1 and (path[0] == '/' or path[0] == '\\') and
-       (path.len == 1 or (path[1] != '/' and path[1] != '\\')))
+        (path.len == 1 or (path[1] != '/' and path[1] != '\\')))
     {
-        return WindowsPath {
+        return WindowsPath{
             .is_abs = true,
             .kind = WindowsPath.Kind.None,
             .disk_designator = path[0..0],
         };
     }
-    const relative_path = WindowsPath {
+    const relative_path = WindowsPath{
         .kind = WindowsPath.Kind.None,
         .disk_designator = []u8{},
         .is_abs = false,
@@ -178,7 +175,7 @@ pub fn windowsParsePath(path: []const u8) WindowsPath {
     // TODO when I combined these together with `inline for` the compiler crashed
     {
         const this_sep = '/';
-        const two_sep = []u8{this_sep, this_sep};
+        const two_sep = []u8{ this_sep, this_sep };
         if (mem.startsWith(u8, path, two_sep)) {
             if (path[2] == this_sep) {
                 return relative_path;
@@ -187,7 +184,7 @@ pub fn windowsParsePath(path: []const u8) WindowsPath {
             var it = mem.split(path, []u8{this_sep});
             _ = (it.next() ?? return relative_path);
             _ = (it.next() ?? return relative_path);
-            return WindowsPath {
+            return WindowsPath{
                 .is_abs = isAbsoluteWindows(path),
                 .kind = WindowsPath.Kind.NetworkShare,
                 .disk_designator = path[0..it.index],
@@ -196,7 +193,7 @@ pub fn windowsParsePath(path: []const u8) WindowsPath {
     }
     {
         const this_sep = '\\';
-        const two_sep = []u8{this_sep, this_sep};
+        const two_sep = []u8{ this_sep, this_sep };
         if (mem.startsWith(u8, path, two_sep)) {
             if (path[2] == this_sep) {
                 return relative_path;
@@ -205,7 +202,7 @@ pub fn windowsParsePath(path: []const u8) WindowsPath {
             var it = mem.split(path, []u8{this_sep});
             _ = (it.next() ?? return relative_path);
             _ = (it.next() ?? return relative_path);
-            return WindowsPath {
+            return WindowsPath{
                 .is_abs = isAbsoluteWindows(path),
                 .kind = WindowsPath.Kind.NetworkShare,
                 .disk_designator = path[0..it.index],
@@ -296,7 +293,7 @@ fn compareDiskDesignators(kind: WindowsPath.Kind, p1: []const u8, p2: []const u8
 
 fn asciiUpper(byte: u8) u8 {
     return switch (byte) {
-        'a' ... 'z' => 'A' + (byte - 'a'),
+        'a'...'z' => 'A' + (byte - 'a'),
         else => byte,
     };
 }
@@ -372,7 +369,6 @@ pub fn resolveWindows(allocator: &Allocator, paths: []const []const u8) ![]u8 {
         max_size += p.len + 1;
     }
 
-
     // if we will result with a disk designator, loop again to determine
     // which is the last time the disk designator is absolutely specified, if any
     // and count up the max bytes for paths related to this disk designator
@@ -386,8 +382,7 @@ pub fn resolveWindows(allocator: &Allocator, paths: []const []const u8) ![]u8 {
             const parsed = windowsParsePath(p);
             if (parsed.kind != WindowsPath.Kind.None) {
                 if (parsed.kind == have_drive_kind) {
-                    correct_disk_designator = compareDiskDesignators(have_drive_kind,
-                        result_disk_designator, parsed.disk_designator);
+                    correct_disk_designator = compareDiskDesignators(have_drive_kind, result_disk_designator, parsed.disk_designator);
                 } else {
                     continue;
                 }
@@ -404,7 +399,6 @@ pub fn resolveWindows(allocator: &Allocator, paths: []const []const u8) ![]u8 {
         }
     }
 
-
     // Allocate result and fill in the disk designator, calling getCwd if we have to.
     var result: []u8 = undefined;
     var result_index: usize = 0;
@@ -433,7 +427,7 @@ pub fn resolveWindows(allocator: &Allocator, paths: []const []const u8) ![]u8 {
                 result_index += 1;
                 mem.copy(u8, result[result_index..], other_name);
                 result_index += other_name.len;
-                
+
                 result_disk_designator = result[0..result_index];
             },
             WindowsPath.Kind.None => {
@@ -478,8 +472,7 @@ pub fn resolveWindows(allocator: &Allocator, paths: []const []const u8) ![]u8 {
 
         if (parsed.kind != WindowsPath.Kind.None) {
             if (parsed.kind == have_drive_kind) {
-                correct_disk_designator = compareDiskDesignators(have_drive_kind,
-                    result_disk_designator, parsed.disk_designator);
+                correct_disk_designator = compareDiskDesignators(have_drive_kind, result_disk_designator, parsed.disk_designator);
             } else {
                 continue;
             }
@@ -591,7 +584,7 @@ test "os.path.resolve" {
         }
         assert(mem.eql(u8, testResolveWindows([][]const u8{"."}), cwd));
     } else {
-        assert(mem.eql(u8, testResolvePosix([][]const u8{"a/b/c/", "../../.."}), cwd));
+        assert(mem.eql(u8, testResolvePosix([][]const u8{ "a/b/c/", "../../.." }), cwd));
         assert(mem.eql(u8, testResolvePosix([][]const u8{"."}), cwd));
     }
 }
@@ -601,16 +594,15 @@ test "os.path.resolveWindows" {
         const cwd = try os.getCwd(debug.global_allocator);
         const parsed_cwd = windowsParsePath(cwd);
         {
-            const result = testResolveWindows([][]const u8{"/usr/local", "lib\\zig\\std\\array_list.zig"});
-            const expected = try join(debug.global_allocator,
-                parsed_cwd.disk_designator, "usr\\local\\lib\\zig\\std\\array_list.zig");
+            const result = testResolveWindows([][]const u8{ "/usr/local", "lib\\zig\\std\\array_list.zig" });
+            const expected = try join(debug.global_allocator, parsed_cwd.disk_designator, "usr\\local\\lib\\zig\\std\\array_list.zig");
             if (parsed_cwd.kind == WindowsPath.Kind.Drive) {
                 expected[0] = asciiUpper(parsed_cwd.disk_designator[0]);
             }
             assert(mem.eql(u8, result, expected));
         }
         {
-            const result = testResolveWindows([][]const u8{"usr/local", "lib\\zig"});
+            const result = testResolveWindows([][]const u8{ "usr/local", "lib\\zig" });
             const expected = try join(debug.global_allocator, cwd, "usr\\local\\lib\\zig");
             if (parsed_cwd.kind == WindowsPath.Kind.Drive) {
                 expected[0] = asciiUpper(parsed_cwd.disk_designator[0]);
@@ -619,33 +611,32 @@ test "os.path.resolveWindows" {
         }
     }
 
-    assert(mem.eql(u8, testResolveWindows([][]const u8{"c:\\a\\b\\c", "/hi", "ok"}), "C:\\hi\\ok"));
-    assert(mem.eql(u8, testResolveWindows([][]const u8{"c:/blah\\blah", "d:/games", "c:../a"}), "C:\\blah\\a"));
-    assert(mem.eql(u8, testResolveWindows([][]const u8{"c:/blah\\blah", "d:/games", "C:../a"}), "C:\\blah\\a"));
-    assert(mem.eql(u8, testResolveWindows([][]const u8{"c:/ignore", "d:\\a/b\\c/d", "\\e.exe"}), "D:\\e.exe"));
-    assert(mem.eql(u8, testResolveWindows([][]const u8{"c:/ignore", "c:/some/file"}), "C:\\some\\file"));
-    assert(mem.eql(u8, testResolveWindows([][]const u8{"d:/ignore", "d:some/dir//"}), "D:\\ignore\\some\\dir"));
-    assert(mem.eql(u8, testResolveWindows([][]const u8{"//server/share", "..", "relative\\"}), "\\\\server\\share\\relative"));
-    assert(mem.eql(u8, testResolveWindows([][]const u8{"c:/", "//"}), "C:\\"));
-    assert(mem.eql(u8, testResolveWindows([][]const u8{"c:/", "//dir"}), "C:\\dir"));
-    assert(mem.eql(u8, testResolveWindows([][]const u8{"c:/", "//server/share"}), "\\\\server\\share\\"));
-    assert(mem.eql(u8, testResolveWindows([][]const u8{"c:/", "//server//share"}), "\\\\server\\share\\"));
-    assert(mem.eql(u8, testResolveWindows([][]const u8{"c:/", "///some//dir"}), "C:\\some\\dir"));
-    assert(mem.eql(u8, testResolveWindows([][]const u8{"C:\\foo\\tmp.3\\", "..\\tmp.3\\cycles\\root.js"}),
-        "C:\\foo\\tmp.3\\cycles\\root.js"));
+    assert(mem.eql(u8, testResolveWindows([][]const u8{ "c:\\a\\b\\c", "/hi", "ok" }), "C:\\hi\\ok"));
+    assert(mem.eql(u8, testResolveWindows([][]const u8{ "c:/blah\\blah", "d:/games", "c:../a" }), "C:\\blah\\a"));
+    assert(mem.eql(u8, testResolveWindows([][]const u8{ "c:/blah\\blah", "d:/games", "C:../a" }), "C:\\blah\\a"));
+    assert(mem.eql(u8, testResolveWindows([][]const u8{ "c:/ignore", "d:\\a/b\\c/d", "\\e.exe" }), "D:\\e.exe"));
+    assert(mem.eql(u8, testResolveWindows([][]const u8{ "c:/ignore", "c:/some/file" }), "C:\\some\\file"));
+    assert(mem.eql(u8, testResolveWindows([][]const u8{ "d:/ignore", "d:some/dir//" }), "D:\\ignore\\some\\dir"));
+    assert(mem.eql(u8, testResolveWindows([][]const u8{ "//server/share", "..", "relative\\" }), "\\\\server\\share\\relative"));
+    assert(mem.eql(u8, testResolveWindows([][]const u8{ "c:/", "//" }), "C:\\"));
+    assert(mem.eql(u8, testResolveWindows([][]const u8{ "c:/", "//dir" }), "C:\\dir"));
+    assert(mem.eql(u8, testResolveWindows([][]const u8{ "c:/", "//server/share" }), "\\\\server\\share\\"));
+    assert(mem.eql(u8, testResolveWindows([][]const u8{ "c:/", "//server//share" }), "\\\\server\\share\\"));
+    assert(mem.eql(u8, testResolveWindows([][]const u8{ "c:/", "///some//dir" }), "C:\\some\\dir"));
+    assert(mem.eql(u8, testResolveWindows([][]const u8{ "C:\\foo\\tmp.3\\", "..\\tmp.3\\cycles\\root.js" }), "C:\\foo\\tmp.3\\cycles\\root.js"));
 }
 
 test "os.path.resolvePosix" {
-    assert(mem.eql(u8, testResolvePosix([][]const u8{"/a/b", "c"}), "/a/b/c"));
-    assert(mem.eql(u8, testResolvePosix([][]const u8{"/a/b", "c", "//d", "e///"}), "/d/e"));
-    assert(mem.eql(u8, testResolvePosix([][]const u8{"/a/b/c", "..", "../"}), "/a"));
-    assert(mem.eql(u8, testResolvePosix([][]const u8{"/", "..", ".."}), "/"));
+    assert(mem.eql(u8, testResolvePosix([][]const u8{ "/a/b", "c" }), "/a/b/c"));
+    assert(mem.eql(u8, testResolvePosix([][]const u8{ "/a/b", "c", "//d", "e///" }), "/d/e"));
+    assert(mem.eql(u8, testResolvePosix([][]const u8{ "/a/b/c", "..", "../" }), "/a"));
+    assert(mem.eql(u8, testResolvePosix([][]const u8{ "/", "..", ".." }), "/"));
     assert(mem.eql(u8, testResolvePosix([][]const u8{"/a/b/c/"}), "/a/b/c"));
 
-    assert(mem.eql(u8, testResolvePosix([][]const u8{"/var/lib", "../", "file/"}), "/var/file"));
-    assert(mem.eql(u8, testResolvePosix([][]const u8{"/var/lib", "/../", "file/"}), "/file"));
-    assert(mem.eql(u8, testResolvePosix([][]const u8{"/some/dir", ".", "/absolute/"}), "/absolute"));
-    assert(mem.eql(u8, testResolvePosix([][]const u8{"/foo/tmp.3/", "../tmp.3/cycles/root.js"}), "/foo/tmp.3/cycles/root.js"));
+    assert(mem.eql(u8, testResolvePosix([][]const u8{ "/var/lib", "../", "file/" }), "/var/file"));
+    assert(mem.eql(u8, testResolvePosix([][]const u8{ "/var/lib", "/../", "file/" }), "/file"));
+    assert(mem.eql(u8, testResolvePosix([][]const u8{ "/some/dir", ".", "/absolute/" }), "/absolute"));
+    assert(mem.eql(u8, testResolvePosix([][]const u8{ "/foo/tmp.3/", "../tmp.3/cycles/root.js" }), "/foo/tmp.3/cycles/root.js"));
 }
 
 fn testResolveWindows(paths: []const []const u8) []u8 {
@@ -1079,9 +1070,7 @@ pub fn real(allocator: &Allocator, pathname: []const u8) ![]u8 {
             mem.copy(u8, pathname_buf, pathname);
             pathname_buf[pathname.len] = 0;
 
-            const h_file = windows.CreateFileA(pathname_buf.ptr,
-                windows.GENERIC_READ, windows.FILE_SHARE_READ, null, windows.OPEN_EXISTING,
-                windows.FILE_ATTRIBUTE_NORMAL, null);
+            const h_file = windows.CreateFileA(pathname_buf.ptr, windows.GENERIC_READ, windows.FILE_SHARE_READ, null, windows.OPEN_EXISTING, windows.FILE_ATTRIBUTE_NORMAL, null);
             if (h_file == windows.INVALID_HANDLE_VALUE) {
                 const err = windows.GetLastError();
                 return switch (err) {
@@ -1161,7 +1150,7 @@ pub fn real(allocator: &Allocator, pathname: []const u8) ![]u8 {
             return allocator.shrink(u8, result_buf, cstr.len(result_buf.ptr));
         },
         Os.linux => {
-            const fd = try os.posixOpen(allocator, pathname, posix.O_PATH|posix.O_NONBLOCK|posix.O_CLOEXEC, 0);
+            const fd = try os.posixOpen(allocator, pathname, posix.O_PATH | posix.O_NONBLOCK | posix.O_CLOEXEC, 0);
             defer os.close(fd);
 
             var buf: ["/proc/self/fd/-2147483648".len]u8 = undefined;
std/os/time.zig
@@ -27,7 +27,7 @@ pub fn sleep(seconds: usize, nanoseconds: usize) void {
 
 const u63 = @IntType(false, 63);
 pub fn posixSleep(seconds: u63, nanoseconds: u63) void {
-    var req = posix.timespec {
+    var req = posix.timespec{
         .tv_sec = seconds,
         .tv_nsec = nanoseconds,
     };
@@ -71,7 +71,7 @@ fn milliTimestampWindows() u64 {
     var ft: i64 = undefined;
     windows.GetSystemTimeAsFileTime(&ft);
     const hns_per_ms = (ns_per_s / 100) / ms_per_s;
-    const epoch_adj =  epoch.windows * ms_per_s;
+    const epoch_adj = epoch.windows * ms_per_s;
     return u64(@divFloor(ft, hns_per_ms) + epoch_adj);
 }
 
@@ -83,7 +83,7 @@ fn milliTimestampDarwin() u64 {
     debug.assert(err == 0);
     const sec_ms = u64(tv.tv_sec) * ms_per_s;
     const usec_ms = @divFloor(u64(tv.tv_usec), us_per_s / ms_per_s);
-    return  u64(sec_ms) + u64(usec_ms); 
+    return u64(sec_ms) + u64(usec_ms);
 }
 
 fn milliTimestampPosix() u64 {
@@ -110,17 +110,16 @@ pub const s_per_hour = s_per_min * 60;
 pub const s_per_day = s_per_hour * 24;
 pub const s_per_week = s_per_day * 7;
 
-
 /// A monotonic high-performance timer.
 /// Timer.start() must be called to initialize the struct, which captures
 ///   the counter frequency on windows and darwin, records the resolution,
 ///   and gives the user an oportunity to check for the existnece of
 ///   monotonic clocks without forcing them to check for error on each read.
-/// .resolution is in nanoseconds on all platforms but .start_time's meaning 
-///   depends on the OS. On Windows and Darwin it is a hardware counter 
+/// .resolution is in nanoseconds on all platforms but .start_time's meaning
+///   depends on the OS. On Windows and Darwin it is a hardware counter
 ///   value that requires calculation to convert to a meaninful unit.
 pub const Timer = struct {
-    
+
     //if we used resolution's value when performing the
     //  performance counter calc on windows/darwin, it would
     //  be less precise
@@ -131,10 +130,9 @@ pub const Timer = struct {
     },
     resolution: u64,
     start_time: u64,
-    
-    
+
     //At some point we may change our minds on RAW, but for now we're
-    //  sticking with posix standard MONOTONIC. For more information, see: 
+    //  sticking with posix standard MONOTONIC. For more information, see:
     //  https://github.com/ziglang/zig/pull/933
     //
     //const monotonic_clock_id = switch(builtin.os) {
@@ -142,20 +140,21 @@ pub const Timer = struct {
     //    else => posix.CLOCK_MONOTONIC,
     //};
     const monotonic_clock_id = posix.CLOCK_MONOTONIC;
-    
-    
     /// Initialize the timer structure.
     //This gives us an oportunity to grab the counter frequency in windows.
     //On Windows: QueryPerformanceCounter will succeed on anything >= XP/2000.
-    //On Posix: CLOCK_MONOTONIC will only fail if the monotonic counter is not 
-    //  supported, or if the timespec pointer is out of bounds, which should be 
+    //On Posix: CLOCK_MONOTONIC will only fail if the monotonic counter is not
+    //  supported, or if the timespec pointer is out of bounds, which should be
     //  impossible here barring cosmic rays or other such occurances of
     //  incredibly bad luck.
     //On Darwin: This cannot fail, as far as I am able to tell.
-    const TimerError = error{TimerUnsupported, Unexpected};
+    const TimerError = error{
+        TimerUnsupported,
+        Unexpected,
+    };
     pub fn start() TimerError!Timer {
         var self: Timer = undefined;
-        
+
         switch (builtin.os) {
             Os.windows => {
                 var freq: i64 = undefined;
@@ -163,7 +162,7 @@ pub const Timer = struct {
                 if (err == windows.FALSE) return error.TimerUnsupported;
                 self.frequency = u64(freq);
                 self.resolution = @divFloor(ns_per_s, self.frequency);
-                
+
                 var start_time: i64 = undefined;
                 err = windows.QueryPerformanceCounter(&start_time);
                 debug.assert(err != windows.FALSE);
@@ -171,9 +170,9 @@ pub const Timer = struct {
             },
             Os.linux => {
                 //On Linux, seccomp can do arbitrary things to our ability to call
-                //  syscalls, including return any errno value it wants and 
+                //  syscalls, including return any errno value it wants and
                 //  inconsistently throwing errors. Since we can't account for
-                //  abuses of seccomp in a reasonable way, we'll assume that if 
+                //  abuses of seccomp in a reasonable way, we'll assume that if
                 //  seccomp is going to block us it will at least do so consistently
                 var ts: posix.timespec = undefined;
                 var result = posix.clock_getres(monotonic_clock_id, &ts);
@@ -184,7 +183,7 @@ pub const Timer = struct {
                     else => return std.os.unexpectedErrorPosix(errno),
                 }
                 self.resolution = u64(ts.tv_sec) * u64(ns_per_s) + u64(ts.tv_nsec);
-                
+
                 result = posix.clock_gettime(monotonic_clock_id, &ts);
                 errno = posix.getErrno(result);
                 if (errno != 0) return std.os.unexpectedErrorPosix(errno);
@@ -199,7 +198,7 @@ pub const Timer = struct {
         }
         return self;
     }
-    
+
     /// Reads the timer value since start or the last reset in nanoseconds
     pub fn read(self: &Timer) u64 {
         var clock = clockNative() - self.start_time;
@@ -210,13 +209,12 @@ pub const Timer = struct {
             else => @compileError("Unsupported OS"),
         };
     }
-    
+
     /// Resets the timer value to 0/now.
-    pub fn reset(self: &Timer) void
-    {
+    pub fn reset(self: &Timer) void {
         self.start_time = clockNative();
     }
-    
+
     /// Returns the current value of the timer in nanoseconds, then resets it
     pub fn lap(self: &Timer) u64 {
         var now = clockNative();
@@ -224,26 +222,25 @@ pub const Timer = struct {
         self.start_time = now;
         return lap_time;
     }
-    
-    
+
     const clockNative = switch (builtin.os) {
         Os.windows => clockWindows,
         Os.linux => clockLinux,
         Os.macosx, Os.ios => clockDarwin,
         else => @compileError("Unsupported OS"),
     };
-    
+
     fn clockWindows() u64 {
         var result: i64 = undefined;
         var err = windows.QueryPerformanceCounter(&result);
         debug.assert(err != windows.FALSE);
         return u64(result);
     }
-    
+
     fn clockDarwin() u64 {
         return darwin.mach_absolute_time();
     }
-    
+
     fn clockLinux() u64 {
         var ts: posix.timespec = undefined;
         var result = posix.clock_gettime(monotonic_clock_id, &ts);
@@ -252,10 +249,6 @@ pub const Timer = struct {
     }
 };
 
-
-
-
-
 test "os.time.sleep" {
     sleep(0, 1);
 }
@@ -263,7 +256,7 @@ test "os.time.sleep" {
 test "os.time.timestamp" {
     const ns_per_ms = (ns_per_s / ms_per_s);
     const margin = 50;
-    
+
     const time_0 = milliTimestamp();
     sleep(0, ns_per_ms);
     const time_1 = milliTimestamp();
@@ -274,15 +267,15 @@ test "os.time.timestamp" {
 test "os.time.Timer" {
     const ns_per_ms = (ns_per_s / ms_per_s);
     const margin = ns_per_ms * 50;
-    
+
     var timer = try Timer.start();
     sleep(0, 10 * ns_per_ms);
     const time_0 = timer.read();
     debug.assert(time_0 > 0 and time_0 < margin);
-    
+
     const time_1 = timer.lap();
     debug.assert(time_1 >= time_0);
-    
+
     timer.reset();
     debug.assert(timer.read() < time_1);
 }
std/os/zen.zig
@@ -3,35 +3,35 @@
 //////////////////////////
 
 pub const Message = struct {
-    sender:   MailboxId,
+    sender: MailboxId,
     receiver: MailboxId,
-    type:     usize,
-    payload:  usize,
+    type: usize,
+    payload: usize,
 
     pub fn from(mailbox_id: &const MailboxId) Message {
-        return Message {
-            .sender   = MailboxId.Undefined,
+        return Message{
+            .sender = MailboxId.Undefined,
             .receiver = *mailbox_id,
-            .type     = 0,
-            .payload  = 0,
+            .type = 0,
+            .payload = 0,
         };
     }
 
     pub fn to(mailbox_id: &const MailboxId, msg_type: usize) Message {
-        return Message {
-            .sender   = MailboxId.This,
+        return Message{
+            .sender = MailboxId.This,
             .receiver = *mailbox_id,
-            .type     = msg_type,
-            .payload  = 0,
+            .type = msg_type,
+            .payload = 0,
         };
     }
 
     pub fn withData(mailbox_id: &const MailboxId, msg_type: usize, payload: usize) Message {
-        return Message {
-            .sender   = MailboxId.This,
+        return Message{
+            .sender = MailboxId.This,
             .receiver = *mailbox_id,
-            .type     = msg_type,
-            .payload  = payload,
+            .type = msg_type,
+            .payload = payload,
         };
     }
 };
@@ -40,27 +40,25 @@ pub const MailboxId = union(enum) {
     Undefined,
     This,
     Kernel,
-    Port:   u16,
+    Port: u16,
     Thread: u16,
 };
 
-
 //////////////////////////////////////
 ////  Ports reserved for servers  ////
 //////////////////////////////////////
 
 pub const Server = struct {
-    pub const Keyboard = MailboxId { .Port = 0 };
-    pub const Terminal = MailboxId { .Port = 1 };
+    pub const Keyboard = MailboxId{ .Port = 0 };
+    pub const Terminal = MailboxId{ .Port = 1 };
 };
 
-
 ////////////////////////
 ////  POSIX things  ////
 ////////////////////////
 
 // Standard streams.
-pub const  STDIN_FILENO = 0;
+pub const STDIN_FILENO = 0;
 pub const STDOUT_FILENO = 1;
 pub const STDERR_FILENO = 2;
 
@@ -101,26 +99,24 @@ pub fn write(fd: i32, buf: &const u8, count: usize) usize {
     return count;
 }
 
-
 ///////////////////////////
 ////  Syscall numbers  ////
 ///////////////////////////
 
 pub const Syscall = enum(usize) {
-    exit          = 0,
-    createPort    = 1,
-    send          = 2,
-    receive       = 3,
-    subscribeIRQ  = 4,
-    inb           = 5,
-    map           = 6,
-    createThread  = 7,
+    exit = 0,
+    createPort = 1,
+    send = 2,
+    receive = 3,
+    subscribeIRQ = 4,
+    inb = 5,
+    map = 6,
+    createThread = 7,
     createProcess = 8,
-    wait          = 9,
-    portReady     = 10,
+    wait = 9,
+    portReady = 10,
 };
 
-
 ////////////////////
 ////  Syscalls  ////
 ////////////////////
@@ -157,7 +153,7 @@ pub fn map(v_addr: usize, p_addr: usize, size: usize, writable: bool) bool {
     return syscall4(Syscall.map, v_addr, p_addr, size, usize(writable)) != 0;
 }
 
-pub fn createThread(function: fn()void) u16 {
+pub fn createThread(function: fn() void) u16 {
     return u16(syscall1(Syscall.createThread, @ptrToInt(function)));
 }
 
@@ -180,66 +176,84 @@ pub fn portReady(port: u16) bool {
 inline fn syscall0(number: Syscall) usize {
     return asm volatile ("int $0x80"
         : [ret] "={eax}" (-> usize)
-        : [number] "{eax}" (number));
+        : [number] "{eax}" (number)
+    );
 }
 
 inline fn syscall1(number: Syscall, arg1: usize) usize {
     return asm volatile ("int $0x80"
         : [ret] "={eax}" (-> usize)
         : [number] "{eax}" (number),
-            [arg1] "{ecx}" (arg1));
+          [arg1] "{ecx}" (arg1)
+    );
 }
 
 inline fn syscall2(number: Syscall, arg1: usize, arg2: usize) usize {
     return asm volatile ("int $0x80"
         : [ret] "={eax}" (-> usize)
         : [number] "{eax}" (number),
-            [arg1] "{ecx}" (arg1),
-            [arg2] "{edx}" (arg2));
+          [arg1] "{ecx}" (arg1),
+          [arg2] "{edx}" (arg2)
+    );
 }
 
 inline fn syscall3(number: Syscall, arg1: usize, arg2: usize, arg3: usize) usize {
     return asm volatile ("int $0x80"
         : [ret] "={eax}" (-> usize)
         : [number] "{eax}" (number),
-            [arg1] "{ecx}" (arg1),
-            [arg2] "{edx}" (arg2),
-            [arg3] "{ebx}" (arg3));
+          [arg1] "{ecx}" (arg1),
+          [arg2] "{edx}" (arg2),
+          [arg3] "{ebx}" (arg3)
+    );
 }
 
 inline fn syscall4(number: Syscall, arg1: usize, arg2: usize, arg3: usize, arg4: usize) usize {
     return asm volatile ("int $0x80"
         : [ret] "={eax}" (-> usize)
         : [number] "{eax}" (number),
-            [arg1] "{ecx}" (arg1),
-            [arg2] "{edx}" (arg2),
-            [arg3] "{ebx}" (arg3),
-            [arg4] "{esi}" (arg4));
+          [arg1] "{ecx}" (arg1),
+          [arg2] "{edx}" (arg2),
+          [arg3] "{ebx}" (arg3),
+          [arg4] "{esi}" (arg4)
+    );
 }
 
-inline fn syscall5(number: Syscall, arg1: usize, arg2: usize, arg3: usize,
-    arg4: usize, arg5: usize) usize
-{
+inline fn syscall5(
+    number: Syscall,
+    arg1: usize,
+    arg2: usize,
+    arg3: usize,
+    arg4: usize,
+    arg5: usize,
+) usize {
     return asm volatile ("int $0x80"
         : [ret] "={eax}" (-> usize)
         : [number] "{eax}" (number),
-            [arg1] "{ecx}" (arg1),
-            [arg2] "{edx}" (arg2),
-            [arg3] "{ebx}" (arg3),
-            [arg4] "{esi}" (arg4),
-            [arg5] "{edi}" (arg5));
+          [arg1] "{ecx}" (arg1),
+          [arg2] "{edx}" (arg2),
+          [arg3] "{ebx}" (arg3),
+          [arg4] "{esi}" (arg4),
+          [arg5] "{edi}" (arg5)
+    );
 }
 
-inline fn syscall6(number: Syscall, arg1: usize, arg2: usize, arg3: usize,
-    arg4: usize, arg5: usize, arg6: usize) usize
-{
+inline fn syscall6(
+    number: Syscall,
+    arg1: usize,
+    arg2: usize,
+    arg3: usize,
+    arg4: usize,
+    arg5: usize,
+    arg6: usize,
+) usize {
     return asm volatile ("int $0x80"
         : [ret] "={eax}" (-> usize)
         : [number] "{eax}" (number),
-            [arg1] "{ecx}" (arg1),
-            [arg2] "{edx}" (arg2),
-            [arg3] "{ebx}" (arg3),
-            [arg4] "{esi}" (arg4),
-            [arg5] "{edi}" (arg5),
-            [arg6] "{ebp}" (arg6));
+          [arg1] "{ecx}" (arg1),
+          [arg2] "{edx}" (arg2),
+          [arg3] "{ebx}" (arg3),
+          [arg4] "{esi}" (arg4),
+          [arg5] "{edi}" (arg5),
+          [arg6] "{ebp}" (arg6)
+    );
 }
std/rand/index.zig
@@ -69,7 +69,7 @@ pub const Random = struct {
                     break :x start;
                 } else x: {
                     // Can't overflow because the range is over signed ints
-                   break :x math.negateCast(value - end_uint) catch unreachable;
+                    break :x math.negateCast(value - end_uint) catch unreachable;
                 };
                 return result;
             } else {
@@ -156,7 +156,7 @@ const SplitMix64 = struct {
     s: u64,
 
     pub fn init(seed: u64) SplitMix64 {
-        return SplitMix64 { .s = seed };
+        return SplitMix64{ .s = seed };
     }
 
     pub fn next(self: &SplitMix64) u64 {
@@ -172,7 +172,7 @@ const SplitMix64 = struct {
 test "splitmix64 sequence" {
     var r = SplitMix64.init(0xaeecf86f7878dd75);
 
-    const seq = []const u64 {
+    const seq = []const u64{
         0x5dbd39db0178eb44,
         0xa9900fb66b397da3,
         0x5c1a28b1aeebcf5c,
@@ -198,8 +198,8 @@ pub const Pcg = struct {
     i: u64,
 
     pub fn init(init_s: u64) Pcg {
-        var pcg = Pcg {
-            .random = Random { .fillFn = fill },
+        var pcg = Pcg{
+            .random = Random{ .fillFn = fill },
             .s = undefined,
             .i = undefined,
         };
@@ -265,7 +265,7 @@ test "pcg sequence" {
     const s1: u64 = 0x84e9c579ef59bbf7;
     r.seedTwo(s0, s1);
 
-    const seq = []const u32 {
+    const seq = []const u32{
         2881561918,
         3063928540,
         1199791034,
@@ -288,8 +288,8 @@ pub const Xoroshiro128 = struct {
     s: [2]u64,
 
     pub fn init(init_s: u64) Xoroshiro128 {
-        var x = Xoroshiro128 {
-            .random = Random { .fillFn = fill },
+        var x = Xoroshiro128{
+            .random = Random{ .fillFn = fill },
             .s = undefined,
         };
 
@@ -314,9 +314,9 @@ pub const Xoroshiro128 = struct {
         var s0: u64 = 0;
         var s1: u64 = 0;
 
-        const table = []const u64 {
+        const table = []const u64{
             0xbeac0467eba5facb,
-            0xd86b048b86aa9922
+            0xd86b048b86aa9922,
         };
 
         inline for (table) |entry| {
@@ -374,7 +374,7 @@ test "xoroshiro sequence" {
     r.s[0] = 0xaeecf86f7878dd75;
     r.s[1] = 0x01cd153642e72622;
 
-    const seq1 = []const u64 {
+    const seq1 = []const u64{
         0xb0ba0da5bb600397,
         0x18a08afde614dccc,
         0xa2635b956a31b929,
@@ -387,10 +387,9 @@ test "xoroshiro sequence" {
         std.debug.assert(s == r.next());
     }
 
-
     r.jump();
 
-    const seq2 = []const u64 {
+    const seq2 = []const u64{
         0x95344a13556d3e22,
         0xb4fb32dafa4d00df,
         0xb2011d9ccdcfe2dd,
@@ -421,8 +420,8 @@ pub const Isaac64 = struct {
     i: usize,
 
     pub fn init(init_s: u64) Isaac64 {
-        var isaac = Isaac64 {
-            .random = Random { .fillFn = fill },
+        var isaac = Isaac64{
+            .random = Random{ .fillFn = fill },
             .r = undefined,
             .m = undefined,
             .a = undefined,
@@ -456,20 +455,20 @@ pub const Isaac64 = struct {
         {
             var i: usize = 0;
             while (i < midpoint) : (i += 4) {
-                self.step( ~(self.a ^ (self.a << 21)), i + 0, 0, midpoint);
-                self.step(   self.a ^ (self.a >>  5) , i + 1, 0, midpoint);
-                self.step(   self.a ^ (self.a << 12) , i + 2, 0, midpoint);
-                self.step(   self.a ^ (self.a >> 33) , i + 3, 0, midpoint);
+                self.step(~(self.a ^ (self.a << 21)), i + 0, 0, midpoint);
+                self.step(self.a ^ (self.a >> 5), i + 1, 0, midpoint);
+                self.step(self.a ^ (self.a << 12), i + 2, 0, midpoint);
+                self.step(self.a ^ (self.a >> 33), i + 3, 0, midpoint);
             }
         }
 
         {
             var i: usize = 0;
             while (i < midpoint) : (i += 4) {
-                self.step( ~(self.a ^ (self.a << 21)), i + 0, midpoint, 0);
-                self.step(   self.a ^ (self.a >>  5) , i + 1, midpoint, 0);
-                self.step(   self.a ^ (self.a << 12) , i + 2, midpoint, 0);
-                self.step(   self.a ^ (self.a >> 33) , i + 3, midpoint, 0);
+                self.step(~(self.a ^ (self.a << 21)), i + 0, midpoint, 0);
+                self.step(self.a ^ (self.a >> 5), i + 1, midpoint, 0);
+                self.step(self.a ^ (self.a << 12), i + 2, midpoint, 0);
+                self.step(self.a ^ (self.a >> 33), i + 3, midpoint, 0);
             }
         }
 
@@ -493,7 +492,7 @@ pub const Isaac64 = struct {
         self.m[0] = init_s;
 
         // prescrambled golden ratio constants
-        var a = []const u64 {
+        var a = []const u64{
             0x647c4677a2884b7c,
             0xb9f8b322c73ac862,
             0x8c0ea5053d4712a0,
@@ -513,14 +512,30 @@ pub const Isaac64 = struct {
                     a[x1] +%= self.m[j + x1];
                 }
 
-                a[0] -%= a[4]; a[5] ^= a[7] >>  9; a[7] +%= a[0];
-                a[1] -%= a[5]; a[6] ^= a[0] <<  9; a[0] +%= a[1];
-                a[2] -%= a[6]; a[7] ^= a[1] >> 23; a[1] +%= a[2];
-                a[3] -%= a[7]; a[0] ^= a[2] << 15; a[2] +%= a[3];
-                a[4] -%= a[0]; a[1] ^= a[3] >> 14; a[3] +%= a[4];
-                a[5] -%= a[1]; a[2] ^= a[4] << 20; a[4] +%= a[5];
-                a[6] -%= a[2]; a[3] ^= a[5] >> 17; a[5] +%= a[6];
-                a[7] -%= a[3]; a[4] ^= a[6] << 14; a[6] +%= a[7];
+                a[0] -%= a[4];
+                a[5] ^= a[7] >> 9;
+                a[7] +%= a[0];
+                a[1] -%= a[5];
+                a[6] ^= a[0] << 9;
+                a[0] +%= a[1];
+                a[2] -%= a[6];
+                a[7] ^= a[1] >> 23;
+                a[1] +%= a[2];
+                a[3] -%= a[7];
+                a[0] ^= a[2] << 15;
+                a[2] +%= a[3];
+                a[4] -%= a[0];
+                a[1] ^= a[3] >> 14;
+                a[3] +%= a[4];
+                a[5] -%= a[1];
+                a[2] ^= a[4] << 20;
+                a[4] +%= a[5];
+                a[6] -%= a[2];
+                a[3] ^= a[5] >> 17;
+                a[5] +%= a[6];
+                a[7] -%= a[3];
+                a[4] ^= a[6] << 14;
+                a[6] +%= a[7];
 
                 comptime var x2: usize = 0;
                 inline while (x2 < 8) : (x2 += 1) {
@@ -533,7 +548,7 @@ pub const Isaac64 = struct {
         self.a = 0;
         self.b = 0;
         self.c = 0;
-        self.i = self.r.len;    // trigger refill on first value
+        self.i = self.r.len; // trigger refill on first value
     }
 
     fn fill(r: &Random, buf: []u8) void {
@@ -567,7 +582,7 @@ test "isaac64 sequence" {
     var r = Isaac64.init(0);
 
     // from reference implementation
-    const seq = []const u64 {
+    const seq = []const u64{
         0xf67dfba498e4937c,
         0x84a5066a9204f380,
         0xfee34bd5f5514dbb,
@@ -609,7 +624,7 @@ test "Random float" {
 
 test "Random scalar" {
     var prng = DefaultPrng.init(0);
-    const s = prng .random.scalar(u64);
+    const s = prng.random.scalar(u64);
 }
 
 test "Random bytes" {
@@ -621,8 +636,8 @@ test "Random bytes" {
 test "Random shuffle" {
     var prng = DefaultPrng.init(0);
 
-    var seq = []const u8 { 0, 1, 2, 3, 4 };
-    var seen = []bool {false} ** 5;
+    var seq = []const u8{ 0, 1, 2, 3, 4 };
+    var seen = []bool{false} ** 5;
 
     var i: usize = 0;
     while (i < 1000) : (i += 1) {
@@ -639,7 +654,8 @@ test "Random shuffle" {
 
 fn sumArray(s: []const u8) u32 {
     var r: u32 = 0;
-    for (s) |e| r += e;
+    for (s) |e|
+        r += e;
     return r;
 }
 
std/rand/ziggurat.zig
@@ -64,8 +64,14 @@ pub const ZigTable = struct {
 };
 
 // zigNorInit
-fn ZigTableGen(comptime is_symmetric: bool, comptime r: f64, comptime v: f64, comptime f: fn(f64) f64,
-       comptime f_inv: fn(f64) f64, comptime zero_case: fn(&Random, f64) f64) ZigTable {
+fn ZigTableGen(
+    comptime is_symmetric: bool,
+    comptime r: f64,
+    comptime v: f64,
+    comptime f: fn(f64) f64,
+    comptime f_inv: fn(f64) f64,
+    comptime zero_case: fn(&Random, f64) f64,
+) ZigTable {
     var tables: ZigTable = undefined;
 
     tables.is_symmetric = is_symmetric;
@@ -98,8 +104,12 @@ pub const NormDist = blk: {
 const norm_r = 3.6541528853610088;
 const norm_v = 0.00492867323399;
 
-fn norm_f(x: f64) f64 { return math.exp(-x * x / 2.0); }
-fn norm_f_inv(y: f64) f64 { return math.sqrt(-2.0 * math.ln(y)); }
+fn norm_f(x: f64) f64 {
+    return math.exp(-x * x / 2.0);
+}
+fn norm_f_inv(y: f64) f64 {
+    return math.sqrt(-2.0 * math.ln(y));
+}
 fn norm_zero_case(random: &Random, u: f64) f64 {
     var x: f64 = 1;
     var y: f64 = 0;
@@ -133,9 +143,15 @@ pub const ExpDist = blk: {
 const exp_r = 7.69711747013104972;
 const exp_v = 0.0039496598225815571993;
 
-fn exp_f(x: f64) f64 { return math.exp(-x); }
-fn exp_f_inv(y: f64) f64 { return -math.ln(y); }
-fn exp_zero_case(random: &Random, _: f64) f64 { return exp_r - math.ln(random.float(f64)); }
+fn exp_f(x: f64) f64 {
+    return math.exp(-x);
+}
+fn exp_f_inv(y: f64) f64 {
+    return -math.ln(y);
+}
+fn exp_zero_case(random: &Random, _: f64) f64 {
+    return exp_r - math.ln(random.float(f64));
+}
 
 test "ziggurant exp dist sanity" {
     var prng = std.rand.DefaultPrng.init(0);
std/special/compiler_rt/comparetf2.zig
@@ -38,25 +38,22 @@ pub extern fn __letf2(a: f128, b: f128) c_int {
 
     // If at least one of a and b is positive, we get the same result comparing
     // a and b as signed integers as we would with a floating-point compare.
-    return if ((aInt & bInt) >= 0)
-        if (aInt < bInt)
-            LE_LESS
-        else if (aInt == bInt)
-            LE_EQUAL
-        else
-            LE_GREATER
+    return if ((aInt & bInt) >= 0) if (aInt < bInt)
+        LE_LESS
+    else if (aInt == bInt)
+        LE_EQUAL
     else
-        // Otherwise, both are negative, so we need to flip the sense of the
-        // comparison to get the correct result.  (This assumes a twos- or ones-
-        // complement integer representation; if integers are represented in a
-        // sign-magnitude representation, then this flip is incorrect).
-        if (aInt > bInt)
-            LE_LESS
-        else if (aInt == bInt)
-            LE_EQUAL
-        else
-            LE_GREATER
-    ;
+        LE_GREATER else
+    // Otherwise, both are negative, so we need to flip the sense of the
+    // comparison to get the correct result.  (This assumes a twos- or ones-
+    // complement integer representation; if integers are represented in a
+    // sign-magnitude representation, then this flip is incorrect).
+    if (aInt > bInt)
+        LE_LESS
+    else if (aInt == bInt)
+        LE_EQUAL
+    else
+        LE_GREATER;
 }
 
 // TODO https://github.com/ziglang/zig/issues/305
@@ -76,21 +73,17 @@ pub extern fn __getf2(a: f128, b: f128) c_int {
 
     if (aAbs > infRep or bAbs > infRep) return GE_UNORDERED;
     if ((aAbs | bAbs) == 0) return GE_EQUAL;
-    return if ((aInt & bInt) >= 0)
-        if (aInt < bInt)
-            GE_LESS
-        else if (aInt == bInt)
-            GE_EQUAL
-        else
-            GE_GREATER
+    return if ((aInt & bInt) >= 0) if (aInt < bInt)
+        GE_LESS
+    else if (aInt == bInt)
+        GE_EQUAL
+    else
+        GE_GREATER else if (aInt > bInt)
+        GE_LESS
+    else if (aInt == bInt)
+        GE_EQUAL
     else
-        if (aInt > bInt)
-            GE_LESS
-        else if (aInt == bInt)
-            GE_EQUAL
-        else
-            GE_GREATER
-    ;
+        GE_GREATER;
 }
 
 pub extern fn __unordtf2(a: f128, b: f128) c_int {
std/special/compiler_rt/fixunsdfti_test.zig
@@ -44,4 +44,3 @@ test "fixunsdfti" {
     test__fixunsdfti(-0x1.FFFFFFFFFFFFFp+62, 0);
     test__fixunsdfti(-0x1.FFFFFFFFFFFFEp+62, 0);
 }
-
std/special/compiler_rt/index.zig
@@ -92,10 +92,10 @@ pub fn setXmm0(comptime T: type, value: T) void {
     const aligned_value: T align(16) = value;
     asm volatile (
         \\movaps (%[ptr]), %%xmm0
-    
-        : 
+            :
         : [ptr] "r" (&aligned_value)
-        : "xmm0");
+        : "xmm0"
+    );
 }
 
 extern fn __udivdi3(a: u64, b: u64) u64 {
@@ -159,7 +159,8 @@ fn isArmArch() bool {
         builtin.Arch.armebv6t2,
         builtin.Arch.armebv5,
         builtin.Arch.armebv5te,
-        builtin.Arch.armebv4t => true,
+        builtin.Arch.armebv4t,
+        => true,
         else => false,
     };
 }
@@ -174,7 +175,10 @@ nakedcc fn __aeabi_uidivmod() void {
         \\ ldr     r1, [sp]
         \\ add     sp, sp, #4
         \\ pop     { pc }
-    ::: "r2", "r1");
+            :
+        :
+        : "r2", "r1"
+    );
 }
 
 // _chkstk (_alloca) routine - probe stack between %esp and (%esp-%eax) in 4k increments,
std/special/bootstrap.zig
@@ -27,10 +27,14 @@ extern fn zen_start() noreturn {
 nakedcc fn _start() noreturn {
     switch (builtin.arch) {
         builtin.Arch.x86_64 => {
-            argc_ptr = asm ("lea (%%rsp), %[argc]" : [argc] "=r" (-> &usize));
+            argc_ptr = asm ("lea (%%rsp), %[argc]"
+                : [argc] "=r" (-> &usize)
+            );
         },
         builtin.Arch.i386 => {
-            argc_ptr = asm ("lea (%%esp), %[argc]" : [argc] "=r" (-> &usize));
+            argc_ptr = asm ("lea (%%esp), %[argc]"
+                : [argc] "=r" (-> &usize)
+            );
         },
         else => @compileError("unsupported arch"),
     }
std/special/bootstrap_lib.zig
@@ -7,8 +7,10 @@ comptime {
     @export("_DllMainCRTStartup", _DllMainCRTStartup, builtin.GlobalLinkage.Strong);
 }
 
-stdcallcc fn _DllMainCRTStartup(hinstDLL: std.os.windows.HINSTANCE, fdwReason: std.os.windows.DWORD,
-    lpReserved: std.os.windows.LPVOID) std.os.windows.BOOL
-{
+stdcallcc fn _DllMainCRTStartup(
+    hinstDLL: std.os.windows.HINSTANCE,
+    fdwReason: std.os.windows.DWORD,
+    lpReserved: std.os.windows.LPVOID,
+) std.os.windows.BOOL {
     return std.os.windows.TRUE;
 }
std/special/build_runner.zig
@@ -24,7 +24,6 @@ pub fn main() !void {
 
     const allocator = &arena.allocator;
 
-
     // skip my own exe name
     _ = arg_it.skip();
 
@@ -175,8 +174,7 @@ fn usage(builder: &Builder, already_ran_build: bool, out_stream: var) !void {
         try out_stream.print("  (none)\n");
     } else {
         for (builder.available_options_list.toSliceConst()) |option| {
-            const name = try fmt.allocPrint(allocator,
-                "  -D{}=[{}]", option.name, Builder.typeIdName(option.type_id));
+            const name = try fmt.allocPrint(allocator, "  -D{}=[{}]", option.name, Builder.typeIdName(option.type_id));
             defer allocator.free(name);
             try out_stream.print("{s24} {}\n", name, option.description);
         }
@@ -202,7 +200,7 @@ fn usageAndErr(builder: &Builder, already_ran_build: bool, out_stream: var) erro
     return error.InvalidArgs;
 }
 
-const UnwrapArgError = error {OutOfMemory};
+const UnwrapArgError = error{OutOfMemory};
 
 fn unwrapArg(arg: UnwrapArgError![]u8) UnwrapArgError![]u8 {
     return arg catch |err| {
std/special/builtin.zig
@@ -56,7 +56,8 @@ export fn memmove(dest: ?&u8, src: ?&const u8, n: usize) ?&u8 {
 comptime {
     if (builtin.mode != builtin.Mode.ReleaseFast and
         builtin.mode != builtin.Mode.ReleaseSmall and
-        builtin.os != builtin.Os.windows) {
+        builtin.os != builtin.Os.windows)
+    {
         @export("__stack_chk_fail", __stack_chk_fail, builtin.GlobalLinkage.Strong);
     }
     if (builtin.os == builtin.Os.linux and builtin.arch == builtin.Arch.x86_64) {
@@ -101,15 +102,27 @@ nakedcc fn clone() void {
 
 const math = @import("../math/index.zig");
 
-export fn fmodf(x: f32, y: f32) f32 { return generic_fmod(f32, x, y); }
-export fn fmod(x: f64, y: f64) f64 { return generic_fmod(f64, x, y); }
+export fn fmodf(x: f32, y: f32) f32 {
+    return generic_fmod(f32, x, y);
+}
+export fn fmod(x: f64, y: f64) f64 {
+    return generic_fmod(f64, x, y);
+}
 
 // TODO add intrinsics for these (and probably the double version too)
 // and have the math stuff use the intrinsic. same as @mod and @rem
-export fn floorf(x: f32) f32 { return math.floor(x); }
-export fn ceilf(x: f32) f32 { return math.ceil(x); }
-export fn floor(x: f64) f64 { return math.floor(x); }
-export fn ceil(x: f64) f64 { return math.ceil(x); }
+export fn floorf(x: f32) f32 {
+    return math.floor(x);
+}
+export fn ceilf(x: f32) f32 {
+    return math.ceil(x);
+}
+export fn floor(x: f64) f64 {
+    return math.floor(x);
+}
+export fn ceil(x: f64) f64 {
+    return math.ceil(x);
+}
 
 fn generic_fmod(comptime T: type, x: T, y: T) T {
     @setRuntimeSafety(false);
@@ -139,7 +152,10 @@ fn generic_fmod(comptime T: type, x: T, y: T) T {
     // normalize x and y
     if (ex == 0) {
         i = ux << exp_bits;
-        while (i >> bits_minus_1 == 0) : (b: {ex -= 1; break :b i <<= 1;}) {}
+        while (i >> bits_minus_1 == 0) : (b: {
+            ex -= 1;
+            i <<= 1;
+        }) {}
         ux <<= log2uint(@bitCast(u32, -ex + 1));
     } else {
         ux &= @maxValue(uint) >> exp_bits;
@@ -147,7 +163,10 @@ fn generic_fmod(comptime T: type, x: T, y: T) T {
     }
     if (ey == 0) {
         i = uy << exp_bits;
-        while (i >> bits_minus_1 == 0) : (b: {ey -= 1; break :b i <<= 1;}) {}
+        while (i >> bits_minus_1 == 0) : (b: {
+            ey -= 1;
+            i <<= 1;
+        }) {}
         uy <<= log2uint(@bitCast(u32, -ey + 1));
     } else {
         uy &= @maxValue(uint) >> exp_bits;
@@ -170,7 +189,10 @@ fn generic_fmod(comptime T: type, x: T, y: T) T {
             return 0 * x;
         ux = i;
     }
-    while (ux >> digits == 0) : (b: {ux <<= 1; break :b ex -= 1;}) {}
+    while (ux >> digits == 0) : (b: {
+        ux <<= 1;
+        ex -= 1;
+    }) {}
 
     // scale result up
     if (ex > 0) {
@@ -298,7 +320,7 @@ export fn sqrt(x: f64) f64 {
 
     // rounding direction
     if (ix0 | ix1 != 0) {
-        var z = 1.0 - tiny;   // raise inexact
+        var z = 1.0 - tiny; // raise inexact
         if (z >= 1.0) {
             z = 1.0 + tiny;
             if (q1 == 0xFFFFFFFF) {
@@ -336,13 +358,13 @@ export fn sqrtf(x: f32) f32 {
     var ix: i32 = @bitCast(i32, x);
 
     if ((ix & 0x7F800000) == 0x7F800000) {
-        return x * x + x;   // sqrt(nan) = nan, sqrt(+inf) = +inf, sqrt(-inf) = snan
+        return x * x + x; // sqrt(nan) = nan, sqrt(+inf) = +inf, sqrt(-inf) = snan
     }
 
     // zero
     if (ix <= 0) {
         if (ix & ~sign == 0) {
-            return x;       // sqrt (+-0) = +-0
+            return x; // sqrt (+-0) = +-0
         }
         if (ix < 0) {
             return math.snan(f32);
@@ -360,20 +382,20 @@ export fn sqrtf(x: f32) f32 {
         m -= i - 1;
     }
 
-    m -= 127;               // unbias exponent
+    m -= 127; // unbias exponent
     ix = (ix & 0x007FFFFF) | 0x00800000;
 
-    if (m & 1 != 0) {       // odd m, double x to even
+    if (m & 1 != 0) { // odd m, double x to even
         ix += ix;
     }
 
-    m >>= 1;                // m = [m / 2]
+    m >>= 1; // m = [m / 2]
 
     // sqrt(x) bit by bit
     ix += ix;
-    var q: i32 = 0;              // q = sqrt(x)
+    var q: i32 = 0; // q = sqrt(x)
     var s: i32 = 0;
-    var r: i32 = 0x01000000;     // r = moving bit right -> left
+    var r: i32 = 0x01000000; // r = moving bit right -> left
 
     while (r != 0) {
         const t = s + r;
@@ -388,7 +410,7 @@ export fn sqrtf(x: f32) f32 {
 
     // floating add to find rounding direction
     if (ix != 0) {
-        var z = 1.0 - tiny;     // inexact
+        var z = 1.0 - tiny; // inexact
         if (z >= 1.0) {
             z = 1.0 + tiny;
             if (z > 1.0) {
std/zig/ast.zig
@@ -388,7 +388,8 @@ pub const Node = struct {
                 Id.SwitchElse,
                 Id.FieldInitializer,
                 Id.DocComment,
-                Id.TestDecl => return false,
+                Id.TestDecl,
+                => return false,
                 Id.While => {
                     const while_node = @fieldParentPtr(While, "base", n);
                     if (while_node.@"else") |@"else"| {
@@ -608,8 +609,7 @@ pub const Node = struct {
                     if (i < 1) return t;
                     i -= 1;
                 },
-                InitArg.None,
-                InitArg.Enum => {},
+                InitArg.None, InitArg.Enum => {},
             }
 
             if (i < self.fields_and_decls.len) return self.fields_and_decls.at(i).*;
@@ -1475,7 +1475,8 @@ pub const Node = struct {
                 Op.Range,
                 Op.Sub,
                 Op.SubWrap,
-                Op.UnwrapMaybe => {},
+                Op.UnwrapMaybe,
+                => {},
             }
 
             if (i < 1) return self.rhs;
std/zig/parse.zig
@@ -81,10 +81,12 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                         });
                         try root_node.decls.push(&test_node.base);
                         try stack.append(State{ .Block = block });
-                        try stack.append(State{ .ExpectTokenSave = ExpectTokenSave{
-                            .id = Token.Id.LBrace,
-                            .ptr = &block.lbrace,
-                        } });
+                        try stack.append(State{
+                            .ExpectTokenSave = ExpectTokenSave{
+                                .id = Token.Id.LBrace,
+                                .ptr = &block.lbrace,
+                            },
+                        });
                         try stack.append(State{ .StringLiteral = OptionalCtx{ .Required = &test_node.name } });
                         continue;
                     },
@@ -95,13 +97,15 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                     },
                     Token.Id.Keyword_pub => {
                         stack.append(State.TopLevel) catch unreachable;
-                        try stack.append(State{ .TopLevelExtern = TopLevelDeclCtx{
-                            .decls = &root_node.decls,
-                            .visib_token = token_index,
-                            .extern_export_inline_token = null,
-                            .lib_name = null,
-                            .comments = comments,
-                        } });
+                        try stack.append(State{
+                            .TopLevelExtern = TopLevelDeclCtx{
+                                .decls = &root_node.decls,
+                                .visib_token = token_index,
+                                .extern_export_inline_token = null,
+                                .lib_name = null,
+                                .comments = comments,
+                            },
+                        });
                         continue;
                     },
                     Token.Id.Keyword_comptime => {
@@ -122,22 +126,26 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
 
                         stack.append(State.TopLevel) catch unreachable;
                         try stack.append(State{ .Block = block });
-                        try stack.append(State{ .ExpectTokenSave = ExpectTokenSave{
-                            .id = Token.Id.LBrace,
-                            .ptr = &block.lbrace,
-                        } });
+                        try stack.append(State{
+                            .ExpectTokenSave = ExpectTokenSave{
+                                .id = Token.Id.LBrace,
+                                .ptr = &block.lbrace,
+                            },
+                        });
                         continue;
                     },
                     else => {
                         prevToken(&tok_it, &tree);
                         stack.append(State.TopLevel) catch unreachable;
-                        try stack.append(State{ .TopLevelExtern = TopLevelDeclCtx{
-                            .decls = &root_node.decls,
-                            .visib_token = null,
-                            .extern_export_inline_token = null,
-                            .lib_name = null,
-                            .comments = comments,
-                        } });
+                        try stack.append(State{
+                            .TopLevelExtern = TopLevelDeclCtx{
+                                .decls = &root_node.decls,
+                                .visib_token = null,
+                                .extern_export_inline_token = null,
+                                .lib_name = null,
+                                .comments = comments,
+                            },
+                        });
                         continue;
                     },
                 }
@@ -147,31 +155,34 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                 const token_index = token.index;
                 const token_ptr = token.ptr;
                 switch (token_ptr.id) {
-                    Token.Id.Keyword_export,
-                    Token.Id.Keyword_inline => {
-                        stack.append(State{ .TopLevelDecl = TopLevelDeclCtx{
-                            .decls = ctx.decls,
-                            .visib_token = ctx.visib_token,
-                            .extern_export_inline_token = AnnotatedToken{
-                                .index = token_index,
-                                .ptr = token_ptr,
+                    Token.Id.Keyword_export, Token.Id.Keyword_inline => {
+                        stack.append(State{
+                            .TopLevelDecl = TopLevelDeclCtx{
+                                .decls = ctx.decls,
+                                .visib_token = ctx.visib_token,
+                                .extern_export_inline_token = AnnotatedToken{
+                                    .index = token_index,
+                                    .ptr = token_ptr,
+                                },
+                                .lib_name = null,
+                                .comments = ctx.comments,
                             },
-                            .lib_name = null,
-                            .comments = ctx.comments,
-                        } }) catch unreachable;
+                        }) catch unreachable;
                         continue;
                     },
                     Token.Id.Keyword_extern => {
-                        stack.append(State{ .TopLevelLibname = TopLevelDeclCtx{
-                            .decls = ctx.decls,
-                            .visib_token = ctx.visib_token,
-                            .extern_export_inline_token = AnnotatedToken{
-                                .index = token_index,
-                                .ptr = token_ptr,
+                        stack.append(State{
+                            .TopLevelLibname = TopLevelDeclCtx{
+                                .decls = ctx.decls,
+                                .visib_token = ctx.visib_token,
+                                .extern_export_inline_token = AnnotatedToken{
+                                    .index = token_index,
+                                    .ptr = token_ptr,
+                                },
+                                .lib_name = null,
+                                .comments = ctx.comments,
                             },
-                            .lib_name = null,
-                            .comments = ctx.comments,
-                        } }) catch unreachable;
+                        }) catch unreachable;
                         continue;
                     },
                     else => {
@@ -192,13 +203,15 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                     };
                 };
 
-                stack.append(State{ .TopLevelDecl = TopLevelDeclCtx{
-                    .decls = ctx.decls,
-                    .visib_token = ctx.visib_token,
-                    .extern_export_inline_token = ctx.extern_export_inline_token,
-                    .lib_name = lib_name,
-                    .comments = ctx.comments,
-                } }) catch unreachable;
+                stack.append(State{
+                    .TopLevelDecl = TopLevelDeclCtx{
+                        .decls = ctx.decls,
+                        .visib_token = ctx.visib_token,
+                        .extern_export_inline_token = ctx.extern_export_inline_token,
+                        .lib_name = lib_name,
+                        .comments = ctx.comments,
+                    },
+                }) catch unreachable;
                 continue;
             },
             State.TopLevelDecl => |ctx| {
@@ -222,15 +235,16 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                         });
                         try ctx.decls.push(&node.base);
 
-                        stack.append(State{ .ExpectTokenSave = ExpectTokenSave{
-                            .id = Token.Id.Semicolon,
-                            .ptr = &node.semicolon_token,
-                        } }) catch unreachable;
+                        stack.append(State{
+                            .ExpectTokenSave = ExpectTokenSave{
+                                .id = Token.Id.Semicolon,
+                                .ptr = &node.semicolon_token,
+                            },
+                        }) catch unreachable;
                         try stack.append(State{ .Expression = OptionalCtx{ .Required = &node.expr } });
                         continue;
                     },
-                    Token.Id.Keyword_var,
-                    Token.Id.Keyword_const => {
+                    Token.Id.Keyword_var, Token.Id.Keyword_const => {
                         if (ctx.extern_export_inline_token) |annotated_token| {
                             if (annotated_token.ptr.id == Token.Id.Keyword_inline) {
                                 ((try tree.errors.addOne())).* = Error{ .InvalidToken = Error.InvalidToken{ .token = annotated_token.index } };
@@ -238,21 +252,20 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                             }
                         }
 
-                        try stack.append(State{ .VarDecl = VarDeclCtx{
-                            .comments = ctx.comments,
-                            .visib_token = ctx.visib_token,
-                            .lib_name = ctx.lib_name,
-                            .comptime_token = null,
-                            .extern_export_token = if (ctx.extern_export_inline_token) |at| at.index else null,
-                            .mut_token = token_index,
-                            .list = ctx.decls,
-                        } });
+                        try stack.append(State{
+                            .VarDecl = VarDeclCtx{
+                                .comments = ctx.comments,
+                                .visib_token = ctx.visib_token,
+                                .lib_name = ctx.lib_name,
+                                .comptime_token = null,
+                                .extern_export_token = if (ctx.extern_export_inline_token) |at| at.index else null,
+                                .mut_token = token_index,
+                                .list = ctx.decls,
+                            },
+                        });
                         continue;
                     },
-                    Token.Id.Keyword_fn,
-                    Token.Id.Keyword_nakedcc,
-                    Token.Id.Keyword_stdcallcc,
-                    Token.Id.Keyword_async => {
+                    Token.Id.Keyword_fn, Token.Id.Keyword_nakedcc, Token.Id.Keyword_stdcallcc, Token.Id.Keyword_async => {
                         const fn_proto = try arena.construct(ast.Node.FnProto{
                             .base = ast.Node{ .id = ast.Node.Id.FnProto },
                             .doc_comments = ctx.comments,
@@ -274,13 +287,14 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                         try stack.append(State{ .FnProto = fn_proto });
 
                         switch (token_ptr.id) {
-                            Token.Id.Keyword_nakedcc,
-                            Token.Id.Keyword_stdcallcc => {
+                            Token.Id.Keyword_nakedcc, Token.Id.Keyword_stdcallcc => {
                                 fn_proto.cc_token = token_index;
-                                try stack.append(State{ .ExpectTokenSave = ExpectTokenSave{
-                                    .id = Token.Id.Keyword_fn,
-                                    .ptr = &fn_proto.fn_token,
-                                } });
+                                try stack.append(State{
+                                    .ExpectTokenSave = ExpectTokenSave{
+                                        .id = Token.Id.Keyword_fn,
+                                        .ptr = &fn_proto.fn_token,
+                                    },
+                                });
                                 continue;
                             },
                             Token.Id.Keyword_async => {
@@ -292,10 +306,12 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                                 });
                                 fn_proto.async_attr = async_node;
 
-                                try stack.append(State{ .ExpectTokenSave = ExpectTokenSave{
-                                    .id = Token.Id.Keyword_fn,
-                                    .ptr = &fn_proto.fn_token,
-                                } });
+                                try stack.append(State{
+                                    .ExpectTokenSave = ExpectTokenSave{
+                                        .id = Token.Id.Keyword_fn,
+                                        .ptr = &fn_proto.fn_token,
+                                    },
+                                });
                                 try stack.append(State{ .AsyncAllocator = async_node });
                                 continue;
                             },
@@ -331,13 +347,15 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                 }
 
                 stack.append(State{ .ContainerDecl = ctx.container_decl }) catch unreachable;
-                try stack.append(State{ .TopLevelExtern = TopLevelDeclCtx{
-                    .decls = &ctx.container_decl.fields_and_decls,
-                    .visib_token = ctx.visib_token,
-                    .extern_export_inline_token = null,
-                    .lib_name = null,
-                    .comments = ctx.comments,
-                } });
+                try stack.append(State{
+                    .TopLevelExtern = TopLevelDeclCtx{
+                        .decls = &ctx.container_decl.fields_and_decls,
+                        .visib_token = ctx.visib_token,
+                        .extern_export_inline_token = null,
+                        .lib_name = null,
+                        .comments = ctx.comments,
+                    },
+                });
                 continue;
             },
 
@@ -361,9 +379,7 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                     .base = ast.Node{ .id = ast.Node.Id.ContainerDecl },
                     .layout_token = ctx.layout_token,
                     .kind_token = switch (token_ptr.id) {
-                        Token.Id.Keyword_struct,
-                        Token.Id.Keyword_union,
-                        Token.Id.Keyword_enum => token_index,
+                        Token.Id.Keyword_struct, Token.Id.Keyword_union, Token.Id.Keyword_enum => token_index,
                         else => {
                             ((try tree.errors.addOne())).* = Error{ .ExpectedAggregateKw = Error.ExpectedAggregateKw{ .token = token_index } };
                             return tree;
@@ -377,10 +393,12 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                 ctx.opt_ctx.store(&node.base);
 
                 stack.append(State{ .ContainerDecl = node }) catch unreachable;
-                try stack.append(State{ .ExpectTokenSave = ExpectTokenSave{
-                    .id = Token.Id.LBrace,
-                    .ptr = &node.lbrace_token,
-                } });
+                try stack.append(State{
+                    .ExpectTokenSave = ExpectTokenSave{
+                        .id = Token.Id.LBrace,
+                        .ptr = &node.lbrace_token,
+                    },
+                });
                 try stack.append(State{ .ContainerInitArgStart = node });
                 continue;
             },
@@ -481,35 +499,41 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                     Token.Id.Keyword_pub => {
                         switch (tree.tokens.at(container_decl.kind_token).id) {
                             Token.Id.Keyword_struct => {
-                                try stack.append(State{ .TopLevelExternOrField = TopLevelExternOrFieldCtx{
-                                    .visib_token = token_index,
-                                    .container_decl = container_decl,
-                                    .comments = comments,
-                                } });
+                                try stack.append(State{
+                                    .TopLevelExternOrField = TopLevelExternOrFieldCtx{
+                                        .visib_token = token_index,
+                                        .container_decl = container_decl,
+                                        .comments = comments,
+                                    },
+                                });
                                 continue;
                             },
                             else => {
                                 stack.append(State{ .ContainerDecl = container_decl }) catch unreachable;
-                                try stack.append(State{ .TopLevelExtern = TopLevelDeclCtx{
-                                    .decls = &container_decl.fields_and_decls,
-                                    .visib_token = token_index,
-                                    .extern_export_inline_token = null,
-                                    .lib_name = null,
-                                    .comments = comments,
-                                } });
+                                try stack.append(State{
+                                    .TopLevelExtern = TopLevelDeclCtx{
+                                        .decls = &container_decl.fields_and_decls,
+                                        .visib_token = token_index,
+                                        .extern_export_inline_token = null,
+                                        .lib_name = null,
+                                        .comments = comments,
+                                    },
+                                });
                                 continue;
                             },
                         }
                     },
                     Token.Id.Keyword_export => {
                         stack.append(State{ .ContainerDecl = container_decl }) catch unreachable;
-                        try stack.append(State{ .TopLevelExtern = TopLevelDeclCtx{
-                            .decls = &container_decl.fields_and_decls,
-                            .visib_token = token_index,
-                            .extern_export_inline_token = null,
-                            .lib_name = null,
-                            .comments = comments,
-                        } });
+                        try stack.append(State{
+                            .TopLevelExtern = TopLevelDeclCtx{
+                                .decls = &container_decl.fields_and_decls,
+                                .visib_token = token_index,
+                                .extern_export_inline_token = null,
+                                .lib_name = null,
+                                .comments = comments,
+                            },
+                        });
                         continue;
                     },
                     Token.Id.RBrace => {
@@ -523,13 +547,15 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                     else => {
                         prevToken(&tok_it, &tree);
                         stack.append(State{ .ContainerDecl = container_decl }) catch unreachable;
-                        try stack.append(State{ .TopLevelExtern = TopLevelDeclCtx{
-                            .decls = &container_decl.fields_and_decls,
-                            .visib_token = null,
-                            .extern_export_inline_token = null,
-                            .lib_name = null,
-                            .comments = comments,
-                        } });
+                        try stack.append(State{
+                            .TopLevelExtern = TopLevelDeclCtx{
+                                .decls = &container_decl.fields_and_decls,
+                                .visib_token = null,
+                                .extern_export_inline_token = null,
+                                .lib_name = null,
+                                .comments = comments,
+                            },
+                        });
                         continue;
                     },
                 }
@@ -557,10 +583,12 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                 try stack.append(State{ .VarDeclAlign = var_decl });
                 try stack.append(State{ .TypeExprBegin = OptionalCtx{ .RequiredNull = &var_decl.type_node } });
                 try stack.append(State{ .IfToken = Token.Id.Colon });
-                try stack.append(State{ .ExpectTokenSave = ExpectTokenSave{
-                    .id = Token.Id.Identifier,
-                    .ptr = &var_decl.name_token,
-                } });
+                try stack.append(State{
+                    .ExpectTokenSave = ExpectTokenSave{
+                        .id = Token.Id.Identifier,
+                        .ptr = &var_decl.name_token,
+                    },
+                });
                 continue;
             },
             State.VarDeclAlign => |var_decl| {
@@ -605,10 +633,12 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                 const semicolon_token = nextToken(&tok_it, &tree);
 
                 if (semicolon_token.ptr.id != Token.Id.Semicolon) {
-                    ((try tree.errors.addOne())).* = Error{ .ExpectedToken = Error.ExpectedToken{
-                        .token = semicolon_token.index,
-                        .expected_id = Token.Id.Semicolon,
-                    } };
+                    ((try tree.errors.addOne())).* = Error{
+                        .ExpectedToken = Error.ExpectedToken{
+                            .token = semicolon_token.index,
+                            .expected_id = Token.Id.Semicolon,
+                        },
+                    };
                     return tree;
                 }
 
@@ -713,10 +743,12 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                 });
                 try fn_proto.params.push(&param_decl.base);
 
-                stack.append(State{ .ParamDeclEnd = ParamDeclEndCtx{
-                    .param_decl = param_decl,
-                    .fn_proto = fn_proto,
-                } }) catch unreachable;
+                stack.append(State{
+                    .ParamDeclEnd = ParamDeclEndCtx{
+                        .param_decl = param_decl,
+                        .fn_proto = fn_proto,
+                    },
+                }) catch unreachable;
                 try stack.append(State{ .ParamDeclName = param_decl });
                 try stack.append(State{ .ParamDeclAliasOrComptime = param_decl });
                 continue;
@@ -769,10 +801,12 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
 
             State.MaybeLabeledExpression => |ctx| {
                 if (eatToken(&tok_it, &tree, Token.Id.Colon)) |_| {
-                    stack.append(State{ .LabeledExpression = LabelCtx{
-                        .label = ctx.label,
-                        .opt_ctx = ctx.opt_ctx,
-                    } }) catch unreachable;
+                    stack.append(State{
+                        .LabeledExpression = LabelCtx{
+                            .label = ctx.label,
+                            .opt_ctx = ctx.opt_ctx,
+                        },
+                    }) catch unreachable;
                     continue;
                 }
 
@@ -797,21 +831,25 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                         continue;
                     },
                     Token.Id.Keyword_while => {
-                        stack.append(State{ .While = LoopCtx{
-                            .label = ctx.label,
-                            .inline_token = null,
-                            .loop_token = token_index,
-                            .opt_ctx = ctx.opt_ctx.toRequired(),
-                        } }) catch unreachable;
+                        stack.append(State{
+                            .While = LoopCtx{
+                                .label = ctx.label,
+                                .inline_token = null,
+                                .loop_token = token_index,
+                                .opt_ctx = ctx.opt_ctx.toRequired(),
+                            },
+                        }) catch unreachable;
                         continue;
                     },
                     Token.Id.Keyword_for => {
-                        stack.append(State{ .For = LoopCtx{
-                            .label = ctx.label,
-                            .inline_token = null,
-                            .loop_token = token_index,
-                            .opt_ctx = ctx.opt_ctx.toRequired(),
-                        } }) catch unreachable;
+                        stack.append(State{
+                            .For = LoopCtx{
+                                .label = ctx.label,
+                                .inline_token = null,
+                                .loop_token = token_index,
+                                .opt_ctx = ctx.opt_ctx.toRequired(),
+                            },
+                        }) catch unreachable;
                         continue;
                     },
                     Token.Id.Keyword_suspend => {
@@ -828,11 +866,13 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                         continue;
                     },
                     Token.Id.Keyword_inline => {
-                        stack.append(State{ .Inline = InlineCtx{
-                            .label = ctx.label,
-                            .inline_token = token_index,
-                            .opt_ctx = ctx.opt_ctx.toRequired(),
-                        } }) catch unreachable;
+                        stack.append(State{
+                            .Inline = InlineCtx{
+                                .label = ctx.label,
+                                .inline_token = token_index,
+                                .opt_ctx = ctx.opt_ctx.toRequired(),
+                            },
+                        }) catch unreachable;
                         continue;
                     },
                     else => {
@@ -852,21 +892,25 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                 const token_ptr = token.ptr;
                 switch (token_ptr.id) {
                     Token.Id.Keyword_while => {
-                        stack.append(State{ .While = LoopCtx{
-                            .inline_token = ctx.inline_token,
-                            .label = ctx.label,
-                            .loop_token = token_index,
-                            .opt_ctx = ctx.opt_ctx.toRequired(),
-                        } }) catch unreachable;
+                        stack.append(State{
+                            .While = LoopCtx{
+                                .inline_token = ctx.inline_token,
+                                .label = ctx.label,
+                                .loop_token = token_index,
+                                .opt_ctx = ctx.opt_ctx.toRequired(),
+                            },
+                        }) catch unreachable;
                         continue;
                     },
                     Token.Id.Keyword_for => {
-                        stack.append(State{ .For = LoopCtx{
-                            .inline_token = ctx.inline_token,
-                            .label = ctx.label,
-                            .loop_token = token_index,
-                            .opt_ctx = ctx.opt_ctx.toRequired(),
-                        } }) catch unreachable;
+                        stack.append(State{
+                            .For = LoopCtx{
+                                .inline_token = ctx.inline_token,
+                                .label = ctx.label,
+                                .loop_token = token_index,
+                                .opt_ctx = ctx.opt_ctx.toRequired(),
+                            },
+                        }) catch unreachable;
                         continue;
                     },
                     else => {
@@ -971,27 +1015,29 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                 const token_ptr = token.ptr;
                 switch (token_ptr.id) {
                     Token.Id.Keyword_comptime => {
-                        stack.append(State{ .ComptimeStatement = ComptimeStatementCtx{
-                            .comptime_token = token_index,
-                            .block = block,
-                        } }) catch unreachable;
-                        continue;
-                    },
-                    Token.Id.Keyword_var,
-                    Token.Id.Keyword_const => {
-                        stack.append(State{ .VarDecl = VarDeclCtx{
-                            .comments = null,
-                            .visib_token = null,
-                            .comptime_token = null,
-                            .extern_export_token = null,
-                            .lib_name = null,
-                            .mut_token = token_index,
-                            .list = &block.statements,
-                        } }) catch unreachable;
+                        stack.append(State{
+                            .ComptimeStatement = ComptimeStatementCtx{
+                                .comptime_token = token_index,
+                                .block = block,
+                            },
+                        }) catch unreachable;
+                        continue;
+                    },
+                    Token.Id.Keyword_var, Token.Id.Keyword_const => {
+                        stack.append(State{
+                            .VarDecl = VarDeclCtx{
+                                .comments = null,
+                                .visib_token = null,
+                                .comptime_token = null,
+                                .extern_export_token = null,
+                                .lib_name = null,
+                                .mut_token = token_index,
+                                .list = &block.statements,
+                            },
+                        }) catch unreachable;
                         continue;
                     },
-                    Token.Id.Keyword_defer,
-                    Token.Id.Keyword_errdefer => {
+                    Token.Id.Keyword_defer, Token.Id.Keyword_errdefer => {
                         const node = try arena.construct(ast.Node.Defer{
                             .base = ast.Node{ .id = ast.Node.Id.Defer },
                             .defer_token = token_index,
@@ -1036,17 +1082,18 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                 const token_index = token.index;
                 const token_ptr = token.ptr;
                 switch (token_ptr.id) {
-                    Token.Id.Keyword_var,
-                    Token.Id.Keyword_const => {
-                        stack.append(State{ .VarDecl = VarDeclCtx{
-                            .comments = null,
-                            .visib_token = null,
-                            .comptime_token = ctx.comptime_token,
-                            .extern_export_token = null,
-                            .lib_name = null,
-                            .mut_token = token_index,
-                            .list = &ctx.block.statements,
-                        } }) catch unreachable;
+                    Token.Id.Keyword_var, Token.Id.Keyword_const => {
+                        stack.append(State{
+                            .VarDecl = VarDeclCtx{
+                                .comments = null,
+                                .visib_token = null,
+                                .comptime_token = ctx.comptime_token,
+                                .extern_export_token = null,
+                                .lib_name = null,
+                                .mut_token = token_index,
+                                .list = &ctx.block.statements,
+                            },
+                        }) catch unreachable;
                         continue;
                     },
                     else => {
@@ -1089,10 +1136,12 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
 
                 stack.append(State{ .AsmOutputItems = items }) catch unreachable;
                 try stack.append(State{ .IfToken = Token.Id.Comma });
-                try stack.append(State{ .ExpectTokenSave = ExpectTokenSave{
-                    .id = Token.Id.RParen,
-                    .ptr = &node.rparen,
-                } });
+                try stack.append(State{
+                    .ExpectTokenSave = ExpectTokenSave{
+                        .id = Token.Id.RParen,
+                        .ptr = &node.rparen,
+                    },
+                });
                 try stack.append(State{ .AsmOutputReturnOrType = node });
                 try stack.append(State{ .ExpectToken = Token.Id.LParen });
                 try stack.append(State{ .StringLiteral = OptionalCtx{ .Required = &node.constraint } });
@@ -1141,10 +1190,12 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
 
                 stack.append(State{ .AsmInputItems = items }) catch unreachable;
                 try stack.append(State{ .IfToken = Token.Id.Comma });
-                try stack.append(State{ .ExpectTokenSave = ExpectTokenSave{
-                    .id = Token.Id.RParen,
-                    .ptr = &node.rparen,
-                } });
+                try stack.append(State{
+                    .ExpectTokenSave = ExpectTokenSave{
+                        .id = Token.Id.RParen,
+                        .ptr = &node.rparen,
+                    },
+                });
                 try stack.append(State{ .Expression = OptionalCtx{ .Required = &node.expr } });
                 try stack.append(State{ .ExpectToken = Token.Id.LParen });
                 try stack.append(State{ .StringLiteral = OptionalCtx{ .Required = &node.constraint } });
@@ -1203,14 +1254,18 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                 stack.append(State{ .FieldInitListCommaOrEnd = list_state }) catch unreachable;
                 try stack.append(State{ .Expression = OptionalCtx{ .Required = &node.expr } });
                 try stack.append(State{ .ExpectToken = Token.Id.Equal });
-                try stack.append(State{ .ExpectTokenSave = ExpectTokenSave{
-                    .id = Token.Id.Identifier,
-                    .ptr = &node.name_token,
-                } });
-                try stack.append(State{ .ExpectTokenSave = ExpectTokenSave{
-                    .id = Token.Id.Period,
-                    .ptr = &node.period_token,
-                } });
+                try stack.append(State{
+                    .ExpectTokenSave = ExpectTokenSave{
+                        .id = Token.Id.Identifier,
+                        .ptr = &node.name_token,
+                    },
+                });
+                try stack.append(State{
+                    .ExpectTokenSave = ExpectTokenSave{
+                        .id = Token.Id.Period,
+                        .ptr = &node.period_token,
+                    },
+                });
                 continue;
             },
             State.FieldInitListCommaOrEnd => |list_state| {
@@ -1320,10 +1375,12 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                     });
                     try switch_case.items.push(&else_node.base);
 
-                    try stack.append(State{ .ExpectTokenSave = ExpectTokenSave{
-                        .id = Token.Id.EqualAngleBracketRight,
-                        .ptr = &switch_case.arrow_token,
-                    } });
+                    try stack.append(State{
+                        .ExpectTokenSave = ExpectTokenSave{
+                            .id = Token.Id.EqualAngleBracketRight,
+                            .ptr = &switch_case.arrow_token,
+                        },
+                    });
                     continue;
                 } else {
                     prevToken(&tok_it, &tree);
@@ -1374,10 +1431,12 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                 }
 
                 async_node.rangle_bracket = TokenIndex(0);
-                try stack.append(State{ .ExpectTokenSave = ExpectTokenSave{
-                    .id = Token.Id.AngleBracketRight,
-                    .ptr = &??async_node.rangle_bracket,
-                } });
+                try stack.append(State{
+                    .ExpectTokenSave = ExpectTokenSave{
+                        .id = Token.Id.AngleBracketRight,
+                        .ptr = &??async_node.rangle_bracket,
+                    },
+                });
                 try stack.append(State{ .TypeExprBegin = OptionalCtx{ .RequiredNull = &async_node.allocator_type } });
                 continue;
             },
@@ -1430,10 +1489,12 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                     continue;
                 }
 
-                stack.append(State{ .ContainerKind = ContainerKindCtx{
-                    .opt_ctx = ctx.opt_ctx,
-                    .layout_token = ctx.extern_token,
-                } }) catch unreachable;
+                stack.append(State{
+                    .ContainerKind = ContainerKindCtx{
+                        .opt_ctx = ctx.opt_ctx,
+                        .layout_token = ctx.extern_token,
+                    },
+                }) catch unreachable;
                 continue;
             },
             State.SliceOrArrayAccess => |node| {
@@ -1443,15 +1504,19 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                 switch (token_ptr.id) {
                     Token.Id.Ellipsis2 => {
                         const start = node.op.ArrayAccess;
-                        node.op = ast.Node.SuffixOp.Op{ .Slice = ast.Node.SuffixOp.Op.Slice{
-                            .start = start,
-                            .end = null,
-                        } };
+                        node.op = ast.Node.SuffixOp.Op{
+                            .Slice = ast.Node.SuffixOp.Op.Slice{
+                                .start = start,
+                                .end = null,
+                            },
+                        };
 
-                        stack.append(State{ .ExpectTokenSave = ExpectTokenSave{
-                            .id = Token.Id.RBracket,
-                            .ptr = &node.rtoken,
-                        } }) catch unreachable;
+                        stack.append(State{
+                            .ExpectTokenSave = ExpectTokenSave{
+                                .id = Token.Id.RBracket,
+                                .ptr = &node.rtoken,
+                            },
+                        }) catch unreachable;
                         try stack.append(State{ .Expression = OptionalCtx{ .Optional = &node.op.Slice.end } });
                         continue;
                     },
@@ -1467,11 +1532,13 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
             },
             State.SliceOrArrayType => |node| {
                 if (eatToken(&tok_it, &tree, Token.Id.RBracket)) |_| {
-                    node.op = ast.Node.PrefixOp.Op{ .SliceType = ast.Node.PrefixOp.AddrOfInfo{
-                        .align_info = null,
-                        .const_token = null,
-                        .volatile_token = null,
-                    } };
+                    node.op = ast.Node.PrefixOp.Op{
+                        .SliceType = ast.Node.PrefixOp.AddrOfInfo{
+                            .align_info = null,
+                            .const_token = null,
+                            .volatile_token = null,
+                        },
+                    };
                     stack.append(State{ .TypeExprBegin = OptionalCtx{ .Required = &node.rhs } }) catch unreachable;
                     try stack.append(State{ .AddrOfModifiers = &node.op.SliceType });
                     continue;
@@ -1495,7 +1562,7 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                             ((try tree.errors.addOne())).* = Error{ .ExtraAlignQualifier = Error.ExtraAlignQualifier{ .token = token_index } };
                             return tree;
                         }
-                        addr_of_info.align_info = ast.Node.PrefixOp.AddrOfInfo.Align {
+                        addr_of_info.align_info = ast.Node.PrefixOp.AddrOfInfo.Align{
                             .node = undefined,
                             .bit_range = null,
                         };
@@ -1548,9 +1615,7 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                     Token.Id.RParen => continue,
                     else => {
                         (try tree.errors.addOne()).* = Error{
-                            .ExpectedColonOrRParen = Error.ExpectedColonOrRParen{
-                                .token = token.index,
-                            }
+                            .ExpectedColonOrRParen = Error.ExpectedColonOrRParen{ .token = token.index },
                         };
                         return tree;
                     },
@@ -1563,10 +1628,12 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                 const token_ptr = token.ptr;
                 if (token_ptr.id != Token.Id.Pipe) {
                     if (opt_ctx != OptionalCtx.Optional) {
-                        ((try tree.errors.addOne())).* = Error{ .ExpectedToken = Error.ExpectedToken{
-                            .token = token_index,
-                            .expected_id = Token.Id.Pipe,
-                        } };
+                        ((try tree.errors.addOne())).* = Error{
+                            .ExpectedToken = Error.ExpectedToken{
+                                .token = token_index,
+                                .expected_id = Token.Id.Pipe,
+                            },
+                        };
                         return tree;
                     }
 
@@ -1582,10 +1649,12 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                 });
                 opt_ctx.store(&node.base);
 
-                stack.append(State{ .ExpectTokenSave = ExpectTokenSave{
-                    .id = Token.Id.Pipe,
-                    .ptr = &node.rpipe,
-                } }) catch unreachable;
+                stack.append(State{
+                    .ExpectTokenSave = ExpectTokenSave{
+                        .id = Token.Id.Pipe,
+                        .ptr = &node.rpipe,
+                    },
+                }) catch unreachable;
                 try stack.append(State{ .Identifier = OptionalCtx{ .Required = &node.error_symbol } });
                 continue;
             },
@@ -1595,10 +1664,12 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                 const token_ptr = token.ptr;
                 if (token_ptr.id != Token.Id.Pipe) {
                     if (opt_ctx != OptionalCtx.Optional) {
-                        ((try tree.errors.addOne())).* = Error{ .ExpectedToken = Error.ExpectedToken{
-                            .token = token_index,
-                            .expected_id = Token.Id.Pipe,
-                        } };
+                        ((try tree.errors.addOne())).* = Error{
+                            .ExpectedToken = Error.ExpectedToken{
+                                .token = token_index,
+                                .expected_id = Token.Id.Pipe,
+                            },
+                        };
                         return tree;
                     }
 
@@ -1615,15 +1686,19 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                 });
                 opt_ctx.store(&node.base);
 
-                try stack.append(State{ .ExpectTokenSave = ExpectTokenSave{
-                    .id = Token.Id.Pipe,
-                    .ptr = &node.rpipe,
-                } });
+                try stack.append(State{
+                    .ExpectTokenSave = ExpectTokenSave{
+                        .id = Token.Id.Pipe,
+                        .ptr = &node.rpipe,
+                    },
+                });
                 try stack.append(State{ .Identifier = OptionalCtx{ .Required = &node.value_symbol } });
-                try stack.append(State{ .OptionalTokenSave = OptionalTokenSave{
-                    .id = Token.Id.Asterisk,
-                    .ptr = &node.ptr_token,
-                } });
+                try stack.append(State{
+                    .OptionalTokenSave = OptionalTokenSave{
+                        .id = Token.Id.Asterisk,
+                        .ptr = &node.ptr_token,
+                    },
+                });
                 continue;
             },
             State.PointerIndexPayload => |opt_ctx| {
@@ -1632,10 +1707,12 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                 const token_ptr = token.ptr;
                 if (token_ptr.id != Token.Id.Pipe) {
                     if (opt_ctx != OptionalCtx.Optional) {
-                        ((try tree.errors.addOne())).* = Error{ .ExpectedToken = Error.ExpectedToken{
-                            .token = token_index,
-                            .expected_id = Token.Id.Pipe,
-                        } };
+                        ((try tree.errors.addOne())).* = Error{
+                            .ExpectedToken = Error.ExpectedToken{
+                                .token = token_index,
+                                .expected_id = Token.Id.Pipe,
+                            },
+                        };
                         return tree;
                     }
 
@@ -1653,17 +1730,21 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                 });
                 opt_ctx.store(&node.base);
 
-                stack.append(State{ .ExpectTokenSave = ExpectTokenSave{
-                    .id = Token.Id.Pipe,
-                    .ptr = &node.rpipe,
-                } }) catch unreachable;
+                stack.append(State{
+                    .ExpectTokenSave = ExpectTokenSave{
+                        .id = Token.Id.Pipe,
+                        .ptr = &node.rpipe,
+                    },
+                }) catch unreachable;
                 try stack.append(State{ .Identifier = OptionalCtx{ .RequiredNull = &node.index_symbol } });
                 try stack.append(State{ .IfToken = Token.Id.Comma });
                 try stack.append(State{ .Identifier = OptionalCtx{ .Required = &node.value_symbol } });
-                try stack.append(State{ .OptionalTokenSave = OptionalTokenSave{
-                    .id = Token.Id.Asterisk,
-                    .ptr = &node.ptr_token,
-                } });
+                try stack.append(State{
+                    .OptionalTokenSave = OptionalTokenSave{
+                        .id = Token.Id.Asterisk,
+                        .ptr = &node.ptr_token,
+                    },
+                });
                 continue;
             },
 
@@ -1672,9 +1753,7 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                 const token_index = token.index;
                 const token_ptr = token.ptr;
                 switch (token_ptr.id) {
-                    Token.Id.Keyword_return,
-                    Token.Id.Keyword_break,
-                    Token.Id.Keyword_continue => {
+                    Token.Id.Keyword_return, Token.Id.Keyword_break, Token.Id.Keyword_continue => {
                         const node = try arena.construct(ast.Node.ControlFlowExpression{
                             .base = ast.Node{ .id = ast.Node.Id.ControlFlowExpression },
                             .ltoken = token_index,
@@ -1703,9 +1782,7 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                         }
                         continue;
                     },
-                    Token.Id.Keyword_try,
-                    Token.Id.Keyword_cancel,
-                    Token.Id.Keyword_resume => {
+                    Token.Id.Keyword_try, Token.Id.Keyword_cancel, Token.Id.Keyword_resume => {
                         const node = try arena.construct(ast.Node.PrefixOp{
                             .base = ast.Node{ .id = ast.Node.Id.PrefixOp },
                             .op_token = token_index,
@@ -2078,10 +2155,12 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
 
                     stack.append(State{ .CurlySuffixExpressionEnd = opt_ctx.toRequired() }) catch unreachable;
                     try stack.append(State{ .IfToken = Token.Id.LBrace });
-                    try stack.append(State{ .FieldInitListItemOrEnd = ListSave(@typeOf(node.op.StructInitializer)){
-                        .list = &node.op.StructInitializer,
-                        .ptr = &node.rtoken,
-                    } });
+                    try stack.append(State{
+                        .FieldInitListItemOrEnd = ListSave(@typeOf(node.op.StructInitializer)){
+                            .list = &node.op.StructInitializer,
+                            .ptr = &node.rtoken,
+                        },
+                    });
                     continue;
                 }
 
@@ -2094,11 +2173,13 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                 opt_ctx.store(&node.base);
                 stack.append(State{ .CurlySuffixExpressionEnd = opt_ctx.toRequired() }) catch unreachable;
                 try stack.append(State{ .IfToken = Token.Id.LBrace });
-                try stack.append(State{ .ExprListItemOrEnd = ExprListCtx{
-                    .list = &node.op.ArrayInitializer,
-                    .end = Token.Id.RBrace,
-                    .ptr = &node.rtoken,
-                } });
+                try stack.append(State{
+                    .ExprListItemOrEnd = ExprListCtx{
+                        .list = &node.op.ArrayInitializer,
+                        .end = Token.Id.RBrace,
+                        .ptr = &node.rtoken,
+                    },
+                });
                 continue;
             },
 
@@ -2171,10 +2252,12 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                         .allocator_type = null,
                         .rangle_bracket = null,
                     });
-                    stack.append(State{ .AsyncEnd = AsyncEndCtx{
-                        .ctx = opt_ctx,
-                        .attribute = async_node,
-                    } }) catch unreachable;
+                    stack.append(State{
+                        .AsyncEnd = AsyncEndCtx{
+                            .ctx = opt_ctx,
+                            .attribute = async_node,
+                        },
+                    }) catch unreachable;
                     try stack.append(State{ .SuffixOpExpressionEnd = opt_ctx.toRequired() });
                     try stack.append(State{ .PrimaryExpression = opt_ctx.toRequired() });
                     try stack.append(State{ .AsyncAllocator = async_node });
@@ -2197,20 +2280,24 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                         const node = try arena.construct(ast.Node.SuffixOp{
                             .base = ast.Node{ .id = ast.Node.Id.SuffixOp },
                             .lhs = lhs,
-                            .op = ast.Node.SuffixOp.Op{ .Call = ast.Node.SuffixOp.Op.Call{
-                                .params = ast.Node.SuffixOp.Op.Call.ParamList.init(arena),
-                                .async_attr = null,
-                            } },
+                            .op = ast.Node.SuffixOp.Op{
+                                .Call = ast.Node.SuffixOp.Op.Call{
+                                    .params = ast.Node.SuffixOp.Op.Call.ParamList.init(arena),
+                                    .async_attr = null,
+                                },
+                            },
                             .rtoken = undefined,
                         });
                         opt_ctx.store(&node.base);
 
                         stack.append(State{ .SuffixOpExpressionEnd = opt_ctx.toRequired() }) catch unreachable;
-                        try stack.append(State{ .ExprListItemOrEnd = ExprListCtx{
-                            .list = &node.op.Call.params,
-                            .end = Token.Id.RParen,
-                            .ptr = &node.rtoken,
-                        } });
+                        try stack.append(State{
+                            .ExprListItemOrEnd = ExprListCtx{
+                                .list = &node.op.Call.params,
+                                .end = Token.Id.RParen,
+                                .ptr = &node.rtoken,
+                            },
+                        });
                         continue;
                     },
                     Token.Id.LBracket => {
@@ -2278,8 +2365,7 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                         _ = try createToCtxLiteral(arena, opt_ctx, ast.Node.UndefinedLiteral, token.index);
                         continue;
                     },
-                    Token.Id.Keyword_true,
-                    Token.Id.Keyword_false => {
+                    Token.Id.Keyword_true, Token.Id.Keyword_false => {
                         _ = try createToCtxLiteral(arena, opt_ctx, ast.Node.BoolLiteral, token.index);
                         continue;
                     },
@@ -2321,8 +2407,7 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                         try stack.append(State{ .Expression = OptionalCtx{ .Required = return_type_ptr } });
                         continue;
                     },
-                    Token.Id.StringLiteral,
-                    Token.Id.MultilineStringLiteralLine => {
+                    Token.Id.StringLiteral, Token.Id.MultilineStringLiteralLine => {
                         opt_ctx.store((try parseStringLiteral(arena, &tok_it, token.ptr, token.index, &tree)) ?? unreachable);
                         continue;
                     },
@@ -2335,10 +2420,12 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                         });
                         opt_ctx.store(&node.base);
 
-                        stack.append(State{ .ExpectTokenSave = ExpectTokenSave{
-                            .id = Token.Id.RParen,
-                            .ptr = &node.rparen,
-                        } }) catch unreachable;
+                        stack.append(State{
+                            .ExpectTokenSave = ExpectTokenSave{
+                                .id = Token.Id.RParen,
+                                .ptr = &node.rparen,
+                            },
+                        }) catch unreachable;
                         try stack.append(State{ .Expression = OptionalCtx{ .Required = &node.expr } });
                         continue;
                     },
@@ -2351,11 +2438,13 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                         });
                         opt_ctx.store(&node.base);
 
-                        stack.append(State{ .ExprListItemOrEnd = ExprListCtx{
-                            .list = &node.params,
-                            .end = Token.Id.RParen,
-                            .ptr = &node.rparen_token,
-                        } }) catch unreachable;
+                        stack.append(State{
+                            .ExprListItemOrEnd = ExprListCtx{
+                                .list = &node.params,
+                                .end = Token.Id.RParen,
+                                .ptr = &node.rparen_token,
+                            },
+                        }) catch unreachable;
                         try stack.append(State{ .ExpectToken = Token.Id.LParen });
                         continue;
                     },
@@ -2372,42 +2461,50 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                         continue;
                     },
                     Token.Id.Keyword_error => {
-                        stack.append(State{ .ErrorTypeOrSetDecl = ErrorTypeOrSetDeclCtx{
-                            .error_token = token.index,
-                            .opt_ctx = opt_ctx,
-                        } }) catch unreachable;
+                        stack.append(State{
+                            .ErrorTypeOrSetDecl = ErrorTypeOrSetDeclCtx{
+                                .error_token = token.index,
+                                .opt_ctx = opt_ctx,
+                            },
+                        }) catch unreachable;
                         continue;
                     },
                     Token.Id.Keyword_packed => {
-                        stack.append(State{ .ContainerKind = ContainerKindCtx{
-                            .opt_ctx = opt_ctx,
-                            .layout_token = token.index,
-                        } }) catch unreachable;
+                        stack.append(State{
+                            .ContainerKind = ContainerKindCtx{
+                                .opt_ctx = opt_ctx,
+                                .layout_token = token.index,
+                            },
+                        }) catch unreachable;
                         continue;
                     },
                     Token.Id.Keyword_extern => {
-                        stack.append(State{ .ExternType = ExternTypeCtx{
-                            .opt_ctx = opt_ctx,
-                            .extern_token = token.index,
-                            .comments = null,
-                        } }) catch unreachable;
+                        stack.append(State{
+                            .ExternType = ExternTypeCtx{
+                                .opt_ctx = opt_ctx,
+                                .extern_token = token.index,
+                                .comments = null,
+                            },
+                        }) catch unreachable;
                         continue;
                     },
-                    Token.Id.Keyword_struct,
-                    Token.Id.Keyword_union,
-                    Token.Id.Keyword_enum => {
+                    Token.Id.Keyword_struct, Token.Id.Keyword_union, Token.Id.Keyword_enum => {
                         prevToken(&tok_it, &tree);
-                        stack.append(State{ .ContainerKind = ContainerKindCtx{
-                            .opt_ctx = opt_ctx,
-                            .layout_token = null,
-                        } }) catch unreachable;
+                        stack.append(State{
+                            .ContainerKind = ContainerKindCtx{
+                                .opt_ctx = opt_ctx,
+                                .layout_token = null,
+                            },
+                        }) catch unreachable;
                         continue;
                     },
                     Token.Id.Identifier => {
-                        stack.append(State{ .MaybeLabeledExpression = MaybeLabeledExpressionCtx{
-                            .label = token.index,
-                            .opt_ctx = opt_ctx,
-                        } }) catch unreachable;
+                        stack.append(State{
+                            .MaybeLabeledExpression = MaybeLabeledExpressionCtx{
+                                .label = token.index,
+                                .opt_ctx = opt_ctx,
+                            },
+                        }) catch unreachable;
                         continue;
                     },
                     Token.Id.Keyword_fn => {
@@ -2431,8 +2528,7 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                         stack.append(State{ .FnProto = fn_proto }) catch unreachable;
                         continue;
                     },
-                    Token.Id.Keyword_nakedcc,
-                    Token.Id.Keyword_stdcallcc => {
+                    Token.Id.Keyword_nakedcc, Token.Id.Keyword_stdcallcc => {
                         const fn_proto = try arena.construct(ast.Node.FnProto{
                             .base = ast.Node{ .id = ast.Node.Id.FnProto },
                             .doc_comments = null,
@@ -2451,10 +2547,12 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                         });
                         opt_ctx.store(&fn_proto.base);
                         stack.append(State{ .FnProto = fn_proto }) catch unreachable;
-                        try stack.append(State{ .ExpectTokenSave = ExpectTokenSave{
-                            .id = Token.Id.Keyword_fn,
-                            .ptr = &fn_proto.fn_token,
-                        } });
+                        try stack.append(State{
+                            .ExpectTokenSave = ExpectTokenSave{
+                                .id = Token.Id.Keyword_fn,
+                                .ptr = &fn_proto.fn_token,
+                            },
+                        });
                         continue;
                     },
                     Token.Id.Keyword_asm => {
@@ -2470,10 +2568,12 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                         });
                         opt_ctx.store(&node.base);
 
-                        stack.append(State{ .ExpectTokenSave = ExpectTokenSave{
-                            .id = Token.Id.RParen,
-                            .ptr = &node.rparen,
-                        } }) catch unreachable;
+                        stack.append(State{
+                            .ExpectTokenSave = ExpectTokenSave{
+                                .id = Token.Id.RParen,
+                                .ptr = &node.rparen,
+                            },
+                        }) catch unreachable;
                         try stack.append(State{ .AsmClobberItems = &node.clobbers });
                         try stack.append(State{ .IfToken = Token.Id.Colon });
                         try stack.append(State{ .AsmInputItems = &node.inputs });
@@ -2482,17 +2582,21 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                         try stack.append(State{ .IfToken = Token.Id.Colon });
                         try stack.append(State{ .StringLiteral = OptionalCtx{ .Required = &node.template } });
                         try stack.append(State{ .ExpectToken = Token.Id.LParen });
-                        try stack.append(State{ .OptionalTokenSave = OptionalTokenSave{
-                            .id = Token.Id.Keyword_volatile,
-                            .ptr = &node.volatile_token,
-                        } });
+                        try stack.append(State{
+                            .OptionalTokenSave = OptionalTokenSave{
+                                .id = Token.Id.Keyword_volatile,
+                                .ptr = &node.volatile_token,
+                            },
+                        });
                     },
                     Token.Id.Keyword_inline => {
-                        stack.append(State{ .Inline = InlineCtx{
-                            .label = null,
-                            .inline_token = token.index,
-                            .opt_ctx = opt_ctx,
-                        } }) catch unreachable;
+                        stack.append(State{
+                            .Inline = InlineCtx{
+                                .label = null,
+                                .inline_token = token.index,
+                                .opt_ctx = opt_ctx,
+                            },
+                        }) catch unreachable;
                         continue;
                     },
                     else => {
@@ -2522,10 +2626,12 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                 });
                 ctx.opt_ctx.store(&node.base);
 
-                stack.append(State{ .ErrorTagListItemOrEnd = ListSave(@typeOf(node.decls)){
-                    .list = &node.decls,
-                    .ptr = &node.rbrace_token,
-                } }) catch unreachable;
+                stack.append(State{
+                    .ErrorTagListItemOrEnd = ListSave(@typeOf(node.decls)){
+                        .list = &node.decls,
+                        .ptr = &node.rbrace_token,
+                    },
+                }) catch unreachable;
                 continue;
             },
             State.StringLiteral => |opt_ctx| {
@@ -2553,10 +2659,12 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                     const token = nextToken(&tok_it, &tree);
                     const token_index = token.index;
                     const token_ptr = token.ptr;
-                    ((try tree.errors.addOne())).* = Error{ .ExpectedToken = Error.ExpectedToken{
-                        .token = token_index,
-                        .expected_id = Token.Id.Identifier,
-                    } };
+                    ((try tree.errors.addOne())).* = Error{
+                        .ExpectedToken = Error.ExpectedToken{
+                            .token = token_index,
+                            .expected_id = Token.Id.Identifier,
+                        },
+                    };
                     return tree;
                 }
             },
@@ -2567,10 +2675,12 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                 const ident_token_index = ident_token.index;
                 const ident_token_ptr = ident_token.ptr;
                 if (ident_token_ptr.id != Token.Id.Identifier) {
-                    ((try tree.errors.addOne())).* = Error{ .ExpectedToken = Error.ExpectedToken{
-                        .token = ident_token_index,
-                        .expected_id = Token.Id.Identifier,
-                    } };
+                    ((try tree.errors.addOne())).* = Error{
+                        .ExpectedToken = Error.ExpectedToken{
+                            .token = ident_token_index,
+                            .expected_id = Token.Id.Identifier,
+                        },
+                    };
                     return tree;
                 }
 
@@ -2588,10 +2698,12 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                 const token_index = token.index;
                 const token_ptr = token.ptr;
                 if (token_ptr.id != token_id) {
-                    ((try tree.errors.addOne())).* = Error{ .ExpectedToken = Error.ExpectedToken{
-                        .token = token_index,
-                        .expected_id = token_id,
-                    } };
+                    ((try tree.errors.addOne())).* = Error{
+                        .ExpectedToken = Error.ExpectedToken{
+                            .token = token_index,
+                            .expected_id = token_id,
+                        },
+                    };
                     return tree;
                 }
                 continue;
@@ -2601,10 +2713,12 @@ pub fn parse(allocator: &mem.Allocator, source: []const u8) !ast.Tree {
                 const token_index = token.index;
                 const token_ptr = token.ptr;
                 if (token_ptr.id != expect_token_save.id) {
-                    ((try tree.errors.addOne())).* = Error{ .ExpectedToken = Error.ExpectedToken{
-                        .token = token_index,
-                        .expected_id = expect_token_save.id,
-                    } };
+                    ((try tree.errors.addOne())).* = Error{
+                        .ExpectedToken = Error.ExpectedToken{
+                            .token = token_index,
+                            .expected_id = expect_token_save.id,
+                        },
+                    };
                     return tree;
                 }
                 expect_token_save.ptr.* = token_index;
@@ -2997,21 +3111,25 @@ fn parseBlockExpr(stack: &std.ArrayList(State), arena: &mem.Allocator, ctx: &con
             return true;
         },
         Token.Id.Keyword_while => {
-            stack.append(State{ .While = LoopCtx{
-                .label = null,
-                .inline_token = null,
-                .loop_token = token_index,
-                .opt_ctx = ctx.*,
-            } }) catch unreachable;
+            stack.append(State{
+                .While = LoopCtx{
+                    .label = null,
+                    .inline_token = null,
+                    .loop_token = token_index,
+                    .opt_ctx = ctx.*,
+                },
+            }) catch unreachable;
             return true;
         },
         Token.Id.Keyword_for => {
-            stack.append(State{ .For = LoopCtx{
-                .label = null,
-                .inline_token = null,
-                .loop_token = token_index,
-                .opt_ctx = ctx.*,
-            } }) catch unreachable;
+            stack.append(State{
+                .For = LoopCtx{
+                    .label = null,
+                    .inline_token = null,
+                    .loop_token = token_index,
+                    .opt_ctx = ctx.*,
+                },
+            }) catch unreachable;
             return true;
         },
         Token.Id.Keyword_switch => {
@@ -3024,10 +3142,12 @@ fn parseBlockExpr(stack: &std.ArrayList(State), arena: &mem.Allocator, ctx: &con
             });
             ctx.store(&node.base);
 
-            stack.append(State{ .SwitchCaseOrEnd = ListSave(@typeOf(node.cases)){
-                .list = &node.cases,
-                .ptr = &node.rbrace,
-            } }) catch unreachable;
+            stack.append(State{
+                .SwitchCaseOrEnd = ListSave(@typeOf(node.cases)){
+                    .list = &node.cases,
+                    .ptr = &node.rbrace,
+                },
+            }) catch unreachable;
             try stack.append(State{ .ExpectToken = Token.Id.LBrace });
             try stack.append(State{ .ExpectToken = Token.Id.RParen });
             try stack.append(State{ .Expression = OptionalCtx{ .Required = &node.expr } });
@@ -3080,10 +3200,14 @@ fn expectCommaOrEnd(tok_it: &ast.Tree.TokenList.Iterator, tree: &ast.Tree, end:
                 return ExpectCommaOrEndResult{ .end_token = token_index };
             }
 
-            return ExpectCommaOrEndResult{ .parse_error = Error{ .ExpectedCommaOrEnd = Error.ExpectedCommaOrEnd{
-                .token = token_index,
-                .end_id = end,
-            } } };
+            return ExpectCommaOrEndResult{
+                .parse_error = Error{
+                    .ExpectedCommaOrEnd = Error.ExpectedCommaOrEnd{
+                        .token = token_index,
+                        .end_id = end,
+                    },
+                },
+            };
         },
     }
 }
@@ -3167,13 +3291,14 @@ fn tokenIdToPrefixOp(id: @TagType(Token.Id)) ?ast.Node.PrefixOp.Op {
         Token.Id.Tilde => ast.Node.PrefixOp.Op{ .BitNot = void{} },
         Token.Id.Minus => ast.Node.PrefixOp.Op{ .Negation = void{} },
         Token.Id.MinusPercent => ast.Node.PrefixOp.Op{ .NegationWrap = void{} },
-        Token.Id.Asterisk,
-        Token.Id.AsteriskAsterisk => ast.Node.PrefixOp.Op{ .PointerType = void{} },
-        Token.Id.Ampersand => ast.Node.PrefixOp.Op{ .AddrOf = ast.Node.PrefixOp.AddrOfInfo{
-            .align_info = null,
-            .const_token = null,
-            .volatile_token = null,
-        } },
+        Token.Id.Asterisk, Token.Id.AsteriskAsterisk => ast.Node.PrefixOp.Op{ .PointerType = void{} },
+        Token.Id.Ampersand => ast.Node.PrefixOp.Op{
+            .AddrOf = ast.Node.PrefixOp.AddrOfInfo{
+                .align_info = null,
+                .const_token = null,
+                .volatile_token = null,
+            },
+        },
         Token.Id.QuestionMark => ast.Node.PrefixOp.Op{ .MaybeType = void{} },
         Token.Id.QuestionMarkQuestionMark => ast.Node.PrefixOp.Op{ .UnwrapMaybe = void{} },
         Token.Id.Keyword_await => ast.Node.PrefixOp.Op{ .Await = void{} },
std/zig/parser_test.zig
@@ -1021,7 +1021,7 @@ test "zig fmt: extern declaration" {
 }
 
 test "zig fmt: alignment" {
-        try testCanonical(
+    try testCanonical(
         \\var foo: c_int align(1);
         \\
     );
@@ -1070,7 +1070,7 @@ test "zig fmt: slice attributes" {
 }
 
 test "zig fmt: test declaration" {
-     try testCanonical(
+    try testCanonical(
         \\test "test name" {
         \\    const a = 1;
         \\    var b = 1;
@@ -1312,7 +1312,7 @@ test "zig fmt: struct declaration" {
 }
 
 test "zig fmt: enum declaration" {
-      try testCanonical(
+    try testCanonical(
         \\const E = enum {
         \\    Ok,
         \\    SomethingElse = 0,
@@ -1340,7 +1340,7 @@ test "zig fmt: enum declaration" {
 }
 
 test "zig fmt: union declaration" {
-      try testCanonical(
+    try testCanonical(
         \\const U = union {
         \\    Int: u8,
         \\    Float: f32,
@@ -1860,10 +1860,15 @@ fn testTransform(source: []const u8, expected_source: []const u8) !void {
         } else |err| switch (err) {
             error.OutOfMemory => {
                 if (failing_allocator.allocated_bytes != failing_allocator.freed_bytes) {
-                    warn("\nfail_index: {}/{}\nallocated bytes: {}\nfreed bytes: {}\nallocations: {}\ndeallocations: {}\n",
-                        fail_index, needed_alloc_count,
-                        failing_allocator.allocated_bytes, failing_allocator.freed_bytes,
-                        failing_allocator.index, failing_allocator.deallocations);
+                    warn(
+                        "\nfail_index: {}/{}\nallocated bytes: {}\nfreed bytes: {}\nallocations: {}\ndeallocations: {}\n",
+                        fail_index,
+                        needed_alloc_count,
+                        failing_allocator.allocated_bytes,
+                        failing_allocator.freed_bytes,
+                        failing_allocator.index,
+                        failing_allocator.deallocations,
+                    );
                     return error.MemoryLeakDetected;
                 }
             },
@@ -1876,4 +1881,3 @@ fn testTransform(source: []const u8, expected_source: []const u8) !void {
 fn testCanonical(source: []const u8) !void {
     return testTransform(source, source);
 }
-
std/zig/render.zig
@@ -161,7 +161,15 @@ fn renderTopLevelDecl(allocator: &mem.Allocator, stream: var, tree: &ast.Tree, i
     }
 }
 
-fn renderExpression(allocator: &mem.Allocator, stream: var, tree: &ast.Tree, indent: usize, start_col: &usize, base: &ast.Node, space: Space,) (@typeOf(stream).Child.Error || Error)!void {
+fn renderExpression(
+    allocator: &mem.Allocator,
+    stream: var,
+    tree: &ast.Tree,
+    indent: usize,
+    start_col: &usize,
+    base: &ast.Node,
+    space: Space,
+) (@typeOf(stream).Child.Error || Error)!void {
     switch (base.id) {
         ast.Node.Id.Identifier => {
             const identifier = @fieldParentPtr(ast.Node.Identifier, "base", base);
@@ -259,8 +267,7 @@ fn renderExpression(allocator: &mem.Allocator, stream: var, tree: &ast.Tree, ind
             try renderExpression(allocator, stream, tree, indent, start_col, infix_op_node.lhs, op_space);
 
             const after_op_space = blk: {
-                const loc = tree.tokenLocation(tree.tokens.at(infix_op_node.op_token).end,
-                    tree.nextToken(infix_op_node.op_token));
+                const loc = tree.tokenLocation(tree.tokens.at(infix_op_node.op_token).end, tree.nextToken(infix_op_node.op_token));
                 break :blk if (loc.line == 0) op_space else Space.Newline;
             };
 
@@ -367,14 +374,16 @@ fn renderExpression(allocator: &mem.Allocator, stream: var, tree: &ast.Tree, ind
                 ast.Node.PrefixOp.Op.NegationWrap,
                 ast.Node.PrefixOp.Op.UnwrapMaybe,
                 ast.Node.PrefixOp.Op.MaybeType,
-                ast.Node.PrefixOp.Op.PointerType => {
+                ast.Node.PrefixOp.Op.PointerType,
+                => {
                     try renderToken(tree, stream, prefix_op_node.op_token, indent, start_col, Space.None);
                 },
 
                 ast.Node.PrefixOp.Op.Try,
                 ast.Node.PrefixOp.Op.Await,
                 ast.Node.PrefixOp.Op.Cancel,
-                ast.Node.PrefixOp.Op.Resume => {
+                ast.Node.PrefixOp.Op.Resume,
+                => {
                     try renderToken(tree, stream, prefix_op_node.op_token, indent, start_col, Space.Space);
                 },
             }
@@ -1568,13 +1577,19 @@ fn renderExpression(allocator: &mem.Allocator, stream: var, tree: &ast.Tree, ind
         ast.Node.Id.VarDecl,
         ast.Node.Id.Use,
         ast.Node.Id.TestDecl,
-        ast.Node.Id.ParamDecl => unreachable,
+        ast.Node.Id.ParamDecl,
+        => unreachable,
     }
 }
 
-fn renderVarDecl(allocator: &mem.Allocator, stream: var, tree: &ast.Tree, indent: usize, start_col: &usize,
-    var_decl: &ast.Node.VarDecl,) (@typeOf(stream).Child.Error || Error)!void
-{
+fn renderVarDecl(
+    allocator: &mem.Allocator,
+    stream: var,
+    tree: &ast.Tree,
+    indent: usize,
+    start_col: &usize,
+    var_decl: &ast.Node.VarDecl,
+) (@typeOf(stream).Child.Error || Error)!void {
     if (var_decl.visib_token) |visib_token| {
         try renderToken(tree, stream, visib_token, indent, start_col, Space.Space); // pub
     }
@@ -1623,7 +1638,15 @@ fn renderVarDecl(allocator: &mem.Allocator, stream: var, tree: &ast.Tree, indent
     try renderToken(tree, stream, var_decl.semicolon_token, indent, start_col, Space.Newline);
 }
 
-fn renderParamDecl(allocator: &mem.Allocator, stream: var, tree: &ast.Tree, indent: usize, start_col: &usize, base: &ast.Node, space: Space,) (@typeOf(stream).Child.Error || Error)!void {
+fn renderParamDecl(
+    allocator: &mem.Allocator,
+    stream: var,
+    tree: &ast.Tree,
+    indent: usize,
+    start_col: &usize,
+    base: &ast.Node,
+    space: Space,
+) (@typeOf(stream).Child.Error || Error)!void {
     const param_decl = @fieldParentPtr(ast.Node.ParamDecl, "base", base);
 
     if (param_decl.comptime_token) |comptime_token| {
@@ -1643,7 +1666,14 @@ fn renderParamDecl(allocator: &mem.Allocator, stream: var, tree: &ast.Tree, inde
     }
 }
 
-fn renderStatement(allocator: &mem.Allocator, stream: var, tree: &ast.Tree, indent: usize, start_col: &usize, base: &ast.Node,) (@typeOf(stream).Child.Error || Error)!void {
+fn renderStatement(
+    allocator: &mem.Allocator,
+    stream: var,
+    tree: &ast.Tree,
+    indent: usize,
+    start_col: &usize,
+    base: &ast.Node,
+) (@typeOf(stream).Child.Error || Error)!void {
     switch (base.id) {
         ast.Node.Id.VarDecl => {
             const var_decl = @fieldParentPtr(ast.Node.VarDecl, "base", base);
@@ -1840,7 +1870,13 @@ fn renderToken(tree: &ast.Tree, stream: var, token_index: ast.TokenIndex, indent
     }
 }
 
-fn renderDocComments(tree: &ast.Tree, stream: var, node: var, indent: usize, start_col: &usize,) (@typeOf(stream).Child.Error || Error)!void {
+fn renderDocComments(
+    tree: &ast.Tree,
+    stream: var,
+    node: var,
+    indent: usize,
+    start_col: &usize,
+) (@typeOf(stream).Child.Error || Error)!void {
     const comment = node.doc_comments ?? return;
     var it = comment.lines.iterator(0);
     const first_token = node.firstToken();
std/zig/tokenizer.zig
@@ -11,55 +11,55 @@ pub const Token = struct {
         id: Id,
     };
 
-    pub const keywords = []Keyword {
-        Keyword{.bytes="align", .id = Id.Keyword_align},
-        Keyword{.bytes="and", .id = Id.Keyword_and},
-        Keyword{.bytes="asm", .id = Id.Keyword_asm},
-        Keyword{.bytes="async", .id = Id.Keyword_async},
-        Keyword{.bytes="await", .id = Id.Keyword_await},
-        Keyword{.bytes="break", .id = Id.Keyword_break},
-        Keyword{.bytes="catch", .id = Id.Keyword_catch},
-        Keyword{.bytes="cancel", .id = Id.Keyword_cancel},
-        Keyword{.bytes="comptime", .id = Id.Keyword_comptime},
-        Keyword{.bytes="const", .id = Id.Keyword_const},
-        Keyword{.bytes="continue", .id = Id.Keyword_continue},
-        Keyword{.bytes="defer", .id = Id.Keyword_defer},
-        Keyword{.bytes="else", .id = Id.Keyword_else},
-        Keyword{.bytes="enum", .id = Id.Keyword_enum},
-        Keyword{.bytes="errdefer", .id = Id.Keyword_errdefer},
-        Keyword{.bytes="error", .id = Id.Keyword_error},
-        Keyword{.bytes="export", .id = Id.Keyword_export},
-        Keyword{.bytes="extern", .id = Id.Keyword_extern},
-        Keyword{.bytes="false", .id = Id.Keyword_false},
-        Keyword{.bytes="fn", .id = Id.Keyword_fn},
-        Keyword{.bytes="for", .id = Id.Keyword_for},
-        Keyword{.bytes="if", .id = Id.Keyword_if},
-        Keyword{.bytes="inline", .id = Id.Keyword_inline},
-        Keyword{.bytes="nakedcc", .id = Id.Keyword_nakedcc},
-        Keyword{.bytes="noalias", .id = Id.Keyword_noalias},
-        Keyword{.bytes="null", .id = Id.Keyword_null},
-        Keyword{.bytes="or", .id = Id.Keyword_or},
-        Keyword{.bytes="packed", .id = Id.Keyword_packed},
-        Keyword{.bytes="promise", .id = Id.Keyword_promise},
-        Keyword{.bytes="pub", .id = Id.Keyword_pub},
-        Keyword{.bytes="resume", .id = Id.Keyword_resume},
-        Keyword{.bytes="return", .id = Id.Keyword_return},
-        Keyword{.bytes="section", .id = Id.Keyword_section},
-        Keyword{.bytes="stdcallcc", .id = Id.Keyword_stdcallcc},
-        Keyword{.bytes="struct", .id = Id.Keyword_struct},
-        Keyword{.bytes="suspend", .id = Id.Keyword_suspend},
-        Keyword{.bytes="switch", .id = Id.Keyword_switch},
-        Keyword{.bytes="test", .id = Id.Keyword_test},
-        Keyword{.bytes="this", .id = Id.Keyword_this},
-        Keyword{.bytes="true", .id = Id.Keyword_true},
-        Keyword{.bytes="try", .id = Id.Keyword_try},
-        Keyword{.bytes="undefined", .id = Id.Keyword_undefined},
-        Keyword{.bytes="union", .id = Id.Keyword_union},
-        Keyword{.bytes="unreachable", .id = Id.Keyword_unreachable},
-        Keyword{.bytes="use", .id = Id.Keyword_use},
-        Keyword{.bytes="var", .id = Id.Keyword_var},
-        Keyword{.bytes="volatile", .id = Id.Keyword_volatile},
-        Keyword{.bytes="while", .id = Id.Keyword_while},
+    pub const keywords = []Keyword{
+        Keyword{ .bytes = "align", .id = Id.Keyword_align },
+        Keyword{ .bytes = "and", .id = Id.Keyword_and },
+        Keyword{ .bytes = "asm", .id = Id.Keyword_asm },
+        Keyword{ .bytes = "async", .id = Id.Keyword_async },
+        Keyword{ .bytes = "await", .id = Id.Keyword_await },
+        Keyword{ .bytes = "break", .id = Id.Keyword_break },
+        Keyword{ .bytes = "catch", .id = Id.Keyword_catch },
+        Keyword{ .bytes = "cancel", .id = Id.Keyword_cancel },
+        Keyword{ .bytes = "comptime", .id = Id.Keyword_comptime },
+        Keyword{ .bytes = "const", .id = Id.Keyword_const },
+        Keyword{ .bytes = "continue", .id = Id.Keyword_continue },
+        Keyword{ .bytes = "defer", .id = Id.Keyword_defer },
+        Keyword{ .bytes = "else", .id = Id.Keyword_else },
+        Keyword{ .bytes = "enum", .id = Id.Keyword_enum },
+        Keyword{ .bytes = "errdefer", .id = Id.Keyword_errdefer },
+        Keyword{ .bytes = "error", .id = Id.Keyword_error },
+        Keyword{ .bytes = "export", .id = Id.Keyword_export },
+        Keyword{ .bytes = "extern", .id = Id.Keyword_extern },
+        Keyword{ .bytes = "false", .id = Id.Keyword_false },
+        Keyword{ .bytes = "fn", .id = Id.Keyword_fn },
+        Keyword{ .bytes = "for", .id = Id.Keyword_for },
+        Keyword{ .bytes = "if", .id = Id.Keyword_if },
+        Keyword{ .bytes = "inline", .id = Id.Keyword_inline },
+        Keyword{ .bytes = "nakedcc", .id = Id.Keyword_nakedcc },
+        Keyword{ .bytes = "noalias", .id = Id.Keyword_noalias },
+        Keyword{ .bytes = "null", .id = Id.Keyword_null },
+        Keyword{ .bytes = "or", .id = Id.Keyword_or },
+        Keyword{ .bytes = "packed", .id = Id.Keyword_packed },
+        Keyword{ .bytes = "promise", .id = Id.Keyword_promise },
+        Keyword{ .bytes = "pub", .id = Id.Keyword_pub },
+        Keyword{ .bytes = "resume", .id = Id.Keyword_resume },
+        Keyword{ .bytes = "return", .id = Id.Keyword_return },
+        Keyword{ .bytes = "section", .id = Id.Keyword_section },
+        Keyword{ .bytes = "stdcallcc", .id = Id.Keyword_stdcallcc },
+        Keyword{ .bytes = "struct", .id = Id.Keyword_struct },
+        Keyword{ .bytes = "suspend", .id = Id.Keyword_suspend },
+        Keyword{ .bytes = "switch", .id = Id.Keyword_switch },
+        Keyword{ .bytes = "test", .id = Id.Keyword_test },
+        Keyword{ .bytes = "this", .id = Id.Keyword_this },
+        Keyword{ .bytes = "true", .id = Id.Keyword_true },
+        Keyword{ .bytes = "try", .id = Id.Keyword_try },
+        Keyword{ .bytes = "undefined", .id = Id.Keyword_undefined },
+        Keyword{ .bytes = "union", .id = Id.Keyword_union },
+        Keyword{ .bytes = "unreachable", .id = Id.Keyword_unreachable },
+        Keyword{ .bytes = "use", .id = Id.Keyword_use },
+        Keyword{ .bytes = "var", .id = Id.Keyword_var },
+        Keyword{ .bytes = "volatile", .id = Id.Keyword_volatile },
+        Keyword{ .bytes = "while", .id = Id.Keyword_while },
     };
 
     // TODO perfect hash at comptime
@@ -72,7 +72,10 @@ pub const Token = struct {
         return null;
     }
 
-    const StrLitKind = enum {Normal, C};
+    const StrLitKind = enum {
+        Normal,
+        C,
+    };
 
     pub const Id = union(enum) {
         Invalid,
@@ -202,7 +205,7 @@ pub const Tokenizer = struct {
     }
 
     pub fn init(buffer: []const u8) Tokenizer {
-        return Tokenizer {
+        return Tokenizer{
             .buffer = buffer,
             .index = 0,
             .pending_invalid_token = null,
@@ -269,7 +272,7 @@ pub const Tokenizer = struct {
         }
         const start_index = self.index;
         var state = State.Start;
-        var result = Token {
+        var result = Token{
             .id = Token.Id.Eof,
             .start = self.index,
             .end = undefined,
@@ -290,7 +293,7 @@ pub const Tokenizer = struct {
                     },
                     '"' => {
                         state = State.StringLiteral;
-                        result.id = Token.Id { .StringLiteral = Token.StrLitKind.Normal };
+                        result.id = Token.Id{ .StringLiteral = Token.StrLitKind.Normal };
                     },
                     '\'' => {
                         state = State.CharLiteral;
@@ -369,7 +372,7 @@ pub const Tokenizer = struct {
                     },
                     '\\' => {
                         state = State.Backslash;
-                        result.id = Token.Id { .MultilineStringLiteralLine = Token.StrLitKind.Normal };
+                        result.id = Token.Id{ .MultilineStringLiteralLine = Token.StrLitKind.Normal };
                     },
                     '{' => {
                         result.id = Token.Id.LBrace;
@@ -455,7 +458,7 @@ pub const Tokenizer = struct {
                     else => {
                         result.id = Token.Id.Asterisk;
                         break;
-                    }
+                    },
                 },
 
                 State.AsteriskPercent => switch (c) {
@@ -467,7 +470,7 @@ pub const Tokenizer = struct {
                     else => {
                         result.id = Token.Id.AsteriskPercent;
                         break;
-                    }
+                    },
                 },
 
                 State.QuestionMark => switch (c) {
@@ -535,7 +538,7 @@ pub const Tokenizer = struct {
                     else => {
                         result.id = Token.Id.Caret;
                         break;
-                    }
+                    },
                 },
 
                 State.Identifier => switch (c) {
@@ -560,11 +563,11 @@ pub const Tokenizer = struct {
                 State.C => switch (c) {
                     '\\' => {
                         state = State.Backslash;
-                        result.id = Token.Id { .MultilineStringLiteralLine = Token.StrLitKind.C };
+                        result.id = Token.Id{ .MultilineStringLiteralLine = Token.StrLitKind.C };
                     },
                     '"' => {
                         state = State.StringLiteral;
-                        result.id = Token.Id { .StringLiteral = Token.StrLitKind.C };
+                        result.id = Token.Id{ .StringLiteral = Token.StrLitKind.C };
                     },
                     'a'...'z', 'A'...'Z', '_', '0'...'9' => {
                         state = State.Identifier;
@@ -605,7 +608,7 @@ pub const Tokenizer = struct {
                         }
 
                         state = State.CharLiteralEnd;
-                    }
+                    },
                 },
 
                 State.CharLiteralBackslash => switch (c) {
@@ -736,7 +739,7 @@ pub const Tokenizer = struct {
                     else => {
                         result.id = Token.Id.MinusPercent;
                         break;
-                    }
+                    },
                 },
 
                 State.AngleBracketLeft => switch (c) {
@@ -944,7 +947,7 @@ pub const Tokenizer = struct {
                         // reinterpret as a normal exponent number
                         self.index -= 1;
                         state = State.FloatExponentNumber;
-                    }
+                    },
                 },
                 State.FloatExponentUnsignedHex => switch (c) {
                     '+', '-' => {
@@ -954,7 +957,7 @@ pub const Tokenizer = struct {
                         // reinterpret as a normal exponent number
                         self.index -= 1;
                         state = State.FloatExponentNumberHex;
-                    }
+                    },
                 },
                 State.FloatExponentNumber => switch (c) {
                     '0'...'9' => {},
@@ -978,15 +981,15 @@ pub const Tokenizer = struct {
                 State.FloatExponentNumberHex,
                 State.StringLiteral, // find this error later
                 State.MultilineStringLiteralLine,
-                State.Builtin => {},
+                State.Builtin,
+                => {},
 
                 State.Identifier => {
                     if (Token.getKeyword(self.buffer[result.start..self.index])) |id| {
                         result.id = id;
                     }
                 },
-                State.LineCommentStart,
-                State.LineComment => {
+                State.LineCommentStart, State.LineComment => {
                     result.id = Token.Id.LineComment;
                 },
                 State.DocComment, State.DocCommentStart => {
@@ -1004,7 +1007,8 @@ pub const Tokenizer = struct {
                 State.CharLiteralEscape1,
                 State.CharLiteralEscape2,
                 State.CharLiteralEnd,
-                State.StringLiteralBackslash => {
+                State.StringLiteralBackslash,
+                => {
                     result.id = Token.Id.Invalid;
                 },
 
@@ -1089,7 +1093,7 @@ pub const Tokenizer = struct {
         if (self.pending_invalid_token != null) return;
         const invalid_length = self.getInvalidCharacterLength();
         if (invalid_length == 0) return;
-        self.pending_invalid_token = Token {
+        self.pending_invalid_token = Token{
             .id = Token.Id.Invalid,
             .start = self.index,
             .end = self.index + invalid_length,
@@ -1134,23 +1138,18 @@ pub const Tokenizer = struct {
     }
 };
 
-
-
 test "tokenizer" {
-    testTokenize("test", []Token.Id {
-        Token.Id.Keyword_test,
-    });
+    testTokenize("test", []Token.Id{Token.Id.Keyword_test});
 }
 
 test "tokenizer - char literal with hex escape" {
-    testTokenize( \\'\x1b'
-    , []Token.Id {
-        Token.Id.CharLiteral,
-    });
+    testTokenize(
+        \\'\x1b'
+    , []Token.Id{Token.Id.CharLiteral});
 }
 
 test "tokenizer - float literal e exponent" {
-    testTokenize("a = 4.94065645841246544177e-324;\n", []Token.Id {
+    testTokenize("a = 4.94065645841246544177e-324;\n", []Token.Id{
         Token.Id.Identifier,
         Token.Id.Equal,
         Token.Id.FloatLiteral,
@@ -1159,7 +1158,7 @@ test "tokenizer - float literal e exponent" {
 }
 
 test "tokenizer - float literal p exponent" {
-    testTokenize("a = 0x1.a827999fcef32p+1022;\n", []Token.Id {
+    testTokenize("a = 0x1.a827999fcef32p+1022;\n", []Token.Id{
         Token.Id.Identifier,
         Token.Id.Equal,
         Token.Id.FloatLiteral,
@@ -1168,31 +1167,31 @@ test "tokenizer - float literal p exponent" {
 }
 
 test "tokenizer - chars" {
-    testTokenize("'c'", []Token.Id {Token.Id.CharLiteral});
+    testTokenize("'c'", []Token.Id{Token.Id.CharLiteral});
 }
 
 test "tokenizer - invalid token characters" {
     testTokenize("#", []Token.Id{Token.Id.Invalid});
     testTokenize("`", []Token.Id{Token.Id.Invalid});
-    testTokenize("'c", []Token.Id {Token.Id.Invalid});
-    testTokenize("'", []Token.Id {Token.Id.Invalid});
-    testTokenize("''", []Token.Id {Token.Id.Invalid, Token.Id.Invalid});
+    testTokenize("'c", []Token.Id{Token.Id.Invalid});
+    testTokenize("'", []Token.Id{Token.Id.Invalid});
+    testTokenize("''", []Token.Id{ Token.Id.Invalid, Token.Id.Invalid });
 }
 
 test "tokenizer - invalid literal/comment characters" {
-    testTokenize("\"\x00\"", []Token.Id {
-        Token.Id { .StringLiteral = Token.StrLitKind.Normal },
+    testTokenize("\"\x00\"", []Token.Id{
+        Token.Id{ .StringLiteral = Token.StrLitKind.Normal },
         Token.Id.Invalid,
     });
-    testTokenize("//\x00", []Token.Id {
+    testTokenize("//\x00", []Token.Id{
         Token.Id.LineComment,
         Token.Id.Invalid,
     });
-    testTokenize("//\x1f", []Token.Id {
+    testTokenize("//\x1f", []Token.Id{
         Token.Id.LineComment,
         Token.Id.Invalid,
     });
-    testTokenize("//\x7f", []Token.Id {
+    testTokenize("//\x7f", []Token.Id{
         Token.Id.LineComment,
         Token.Id.Invalid,
     });
@@ -1261,18 +1260,16 @@ test "tokenizer - illegal unicode codepoints" {
 test "tokenizer - string identifier and builtin fns" {
     testTokenize(
         \\const @"if" = @import("std");
-    ,
-        []Token.Id{
-            Token.Id.Keyword_const,
-            Token.Id.Identifier,
-            Token.Id.Equal,
-            Token.Id.Builtin,
-            Token.Id.LParen,
-            Token.Id {.StringLiteral = Token.StrLitKind.Normal},
-            Token.Id.RParen,
-            Token.Id.Semicolon,
-        }
-    );
+    , []Token.Id{
+        Token.Id.Keyword_const,
+        Token.Id.Identifier,
+        Token.Id.Equal,
+        Token.Id.Builtin,
+        Token.Id.LParen,
+        Token.Id{ .StringLiteral = Token.StrLitKind.Normal },
+        Token.Id.RParen,
+        Token.Id.Semicolon,
+    });
 }
 
 test "tokenizer - pipe and then invalid" {
@@ -1314,7 +1311,10 @@ fn testTokenize(source: []const u8, expected_tokens: []const Token.Id) void {
         }
         switch (expected_token_id) {
             Token.Id.StringLiteral => |expected_kind| {
-                std.debug.assert(expected_kind == switch (token.id) { Token.Id.StringLiteral => |kind| kind, else => unreachable });
+                std.debug.assert(expected_kind == switch (token.id) {
+                    Token.Id.StringLiteral => |kind| kind,
+                    else => unreachable,
+                });
             },
             else => {},
         }
std/base64.zig
@@ -81,6 +81,7 @@ pub const Base64Decoder = struct {
     /// e.g. 'A' => 0.
     /// undefined for any value not in the 64 alphabet chars.
     char_to_index: [256]u8,
+
     /// true only for the 64 chars in the alphabet, not the pad char.
     char_in_alphabet: [256]bool,
     pad_char: u8,
std/heap.zig
@@ -68,9 +68,7 @@ pub const DirectAllocator = struct {
         const self = @fieldParentPtr(DirectAllocator, "allocator", allocator);
 
         switch (builtin.os) {
-            Os.linux,
-            Os.macosx,
-            Os.ios => {
+            Os.linux, Os.macosx, Os.ios => {
                 const p = os.posix;
                 const alloc_size = if (alignment <= os.page_size) n else n + alignment;
                 const addr = p.mmap(null, alloc_size, p.PROT_READ | p.PROT_WRITE, p.MAP_PRIVATE | p.MAP_ANONYMOUS, -1, 0);
@@ -121,9 +119,7 @@ pub const DirectAllocator = struct {
         const self = @fieldParentPtr(DirectAllocator, "allocator", allocator);
 
         switch (builtin.os) {
-            Os.linux,
-            Os.macosx,
-            Os.ios => {
+            Os.linux, Os.macosx, Os.ios => {
                 if (new_size <= old_mem.len) {
                     const base_addr = @ptrToInt(old_mem.ptr);
                     const old_addr_end = base_addr + old_mem.len;
@@ -168,9 +164,7 @@ pub const DirectAllocator = struct {
         const self = @fieldParentPtr(DirectAllocator, "allocator", allocator);
 
         switch (builtin.os) {
-            Os.linux,
-            Os.macosx,
-            Os.ios => {
+            Os.linux, Os.macosx, Os.ios => {
                 _ = os.posix.munmap(@ptrToInt(bytes.ptr), bytes.len);
             },
             Os.windows => {
@@ -430,7 +424,7 @@ fn testAllocator(allocator: &mem.Allocator) !void {
 }
 
 fn testAllocatorLargeAlignment(allocator: &mem.Allocator) mem.Allocator.Error!void {
-    //Maybe a platform's page_size is actually the same as or 
+    //Maybe a platform's page_size is actually the same as or
     //  very near usize?
     if (os.page_size << 2 > @maxValue(usize)) return;
 
std/io_test.zig
@@ -42,7 +42,7 @@ test "write a file, read it, then delete it" {
 
         assert(mem.eql(u8, contents[0.."begin".len], "begin"));
         assert(mem.eql(u8, contents["begin".len..contents.len - "end".len], data));
-        assert(mem.eql(u8, contents[contents.len - "end".len ..], "end"));
+        assert(mem.eql(u8, contents[contents.len - "end".len..], "end"));
     }
     try os.deleteFile(allocator, tmp_file_name);
 }
std/json.zig
@@ -252,7 +252,7 @@ pub const StreamingJsonParser = struct {
                     p.after_value_state = State.TopLevelEnd;
                     p.count = 0;
                 },
-                '1' ... '9' => {
+                '1'...'9' => {
                     p.number_is_integer = true;
                     p.state = State.NumberMaybeDigitOrDotOrExponent;
                     p.after_value_state = State.TopLevelEnd;
@@ -281,10 +281,7 @@ pub const StreamingJsonParser = struct {
                     p.after_value_state = State.TopLevelEnd;
                     p.count = 0;
                 },
-                0x09,
-                0x0A,
-                0x0D,
-                0x20 => {
+                0x09, 0x0A, 0x0D, 0x20 => {
                     // whitespace
                 },
                 else => {
@@ -293,10 +290,7 @@ pub const StreamingJsonParser = struct {
             },
 
             State.TopLevelEnd => switch (c) {
-                0x09,
-                0x0A,
-                0x0D,
-                0x20 => {
+                0x09, 0x0A, 0x0D, 0x20 => {
                     // whitespace
                 },
                 else => {
@@ -392,7 +386,7 @@ pub const StreamingJsonParser = struct {
                     p.state = State.NumberMaybeDotOrExponent;
                     p.count = 0;
                 },
-                '1' ... '9' => {
+                '1'...'9' => {
                     p.state = State.NumberMaybeDigitOrDotOrExponent;
                     p.count = 0;
                 },
@@ -412,10 +406,7 @@ pub const StreamingJsonParser = struct {
                     p.state = State.NullLiteral1;
                     p.count = 0;
                 },
-                0x09,
-                0x0A,
-                0x0D,
-                0x20 => {
+                0x09, 0x0A, 0x0D, 0x20 => {
                     // whitespace
                 },
                 else => {
@@ -461,7 +452,7 @@ pub const StreamingJsonParser = struct {
                     p.state = State.NumberMaybeDotOrExponent;
                     p.count = 0;
                 },
-                '1' ... '9' => {
+                '1'...'9' => {
                     p.state = State.NumberMaybeDigitOrDotOrExponent;
                     p.count = 0;
                 },
@@ -481,10 +472,7 @@ pub const StreamingJsonParser = struct {
                     p.state = State.NullLiteral1;
                     p.count = 0;
                 },
-                0x09,
-                0x0A,
-                0x0D,
-                0x20 => {
+                0x09, 0x0A, 0x0D, 0x20 => {
                     // whitespace
                 },
                 else => {
@@ -533,10 +521,7 @@ pub const StreamingJsonParser = struct {
 
                     token.* = Token.initMarker(Token.Id.ObjectEnd);
                 },
-                0x09,
-                0x0A,
-                0x0D,
-                0x20 => {
+                0x09, 0x0A, 0x0D, 0x20 => {
                     // whitespace
                 },
                 else => {
@@ -549,10 +534,7 @@ pub const StreamingJsonParser = struct {
                     p.state = State.ValueBegin;
                     p.after_string_state = State.ValueEnd;
                 },
-                0x09,
-                0x0A,
-                0x0D,
-                0x20 => {
+                0x09, 0x0A, 0x0D, 0x20 => {
                     // whitespace
                 },
                 else => {
@@ -561,7 +543,7 @@ pub const StreamingJsonParser = struct {
             },
 
             State.String => switch (c) {
-                0x00 ... 0x1F => {
+                0x00...0x1F => {
                     return error.InvalidControlCharacter;
                 },
                 '"' => {
@@ -576,19 +558,16 @@ pub const StreamingJsonParser = struct {
                 '\\' => {
                     p.state = State.StringEscapeCharacter;
                 },
-                0x20,
-                0x21,
-                0x23 ... 0x5B,
-                0x5D ... 0x7F => {
+                0x20, 0x21, 0x23...0x5B, 0x5D...0x7F => {
                     // non-control ascii
                 },
-                0xC0 ... 0xDF => {
+                0xC0...0xDF => {
                     p.state = State.StringUtf8Byte1;
                 },
-                0xE0 ... 0xEF => {
+                0xE0...0xEF => {
                     p.state = State.StringUtf8Byte2;
                 },
-                0xF0 ... 0xFF => {
+                0xF0...0xFF => {
                     p.state = State.StringUtf8Byte3;
                 },
                 else => {
@@ -620,14 +599,7 @@ pub const StreamingJsonParser = struct {
                 // The current JSONTestSuite tests rely on both of this behaviour being present
                 // however, so we default to the status quo where both are accepted until this
                 // is further clarified.
-                '"',
-                '\\',
-                '/',
-                'b',
-                'f',
-                'n',
-                'r',
-                't' => {
+                '"', '\\', '/', 'b', 'f', 'n', 'r', 't' => {
                     p.string_has_escape = true;
                     p.state = State.String;
                 },
@@ -641,36 +613,28 @@ pub const StreamingJsonParser = struct {
             },
 
             State.StringEscapeHexUnicode4 => switch (c) {
-                '0' ... '9',
-                'A' ... 'F',
-                'a' ... 'f' => {
+                '0'...'9', 'A'...'F', 'a'...'f' => {
                     p.state = State.StringEscapeHexUnicode3;
                 },
                 else => return error.InvalidUnicodeHexSymbol,
             },
 
             State.StringEscapeHexUnicode3 => switch (c) {
-                '0' ... '9',
-                'A' ... 'F',
-                'a' ... 'f' => {
+                '0'...'9', 'A'...'F', 'a'...'f' => {
                     p.state = State.StringEscapeHexUnicode2;
                 },
                 else => return error.InvalidUnicodeHexSymbol,
             },
 
             State.StringEscapeHexUnicode2 => switch (c) {
-                '0' ... '9',
-                'A' ... 'F',
-                'a' ... 'f' => {
+                '0'...'9', 'A'...'F', 'a'...'f' => {
                     p.state = State.StringEscapeHexUnicode1;
                 },
                 else => return error.InvalidUnicodeHexSymbol,
             },
 
             State.StringEscapeHexUnicode1 => switch (c) {
-                '0' ... '9',
-                'A' ... 'F',
-                'a' ... 'f' => {
+                '0'...'9', 'A'...'F', 'a'...'f' => {
                     p.state = State.String;
                 },
                 else => return error.InvalidUnicodeHexSymbol,
@@ -682,7 +646,7 @@ pub const StreamingJsonParser = struct {
                     '0' => {
                         p.state = State.NumberMaybeDotOrExponent;
                     },
-                    '1' ... '9' => {
+                    '1'...'9' => {
                         p.state = State.NumberMaybeDigitOrDotOrExponent;
                     },
                     else => {
@@ -698,8 +662,7 @@ pub const StreamingJsonParser = struct {
                         p.number_is_integer = false;
                         p.state = State.NumberFractionalRequired;
                     },
-                    'e',
-                    'E' => {
+                    'e', 'E' => {
                         p.number_is_integer = false;
                         p.state = State.NumberExponent;
                     },
@@ -718,12 +681,11 @@ pub const StreamingJsonParser = struct {
                         p.number_is_integer = false;
                         p.state = State.NumberFractionalRequired;
                     },
-                    'e',
-                    'E' => {
+                    'e', 'E' => {
                         p.number_is_integer = false;
                         p.state = State.NumberExponent;
                     },
-                    '0' ... '9' => {
+                    '0'...'9' => {
                         // another digit
                     },
                     else => {
@@ -737,7 +699,7 @@ pub const StreamingJsonParser = struct {
             State.NumberFractionalRequired => {
                 p.complete = p.after_value_state == State.TopLevelEnd;
                 switch (c) {
-                    '0' ... '9' => {
+                    '0'...'9' => {
                         p.state = State.NumberFractional;
                     },
                     else => {
@@ -749,11 +711,10 @@ pub const StreamingJsonParser = struct {
             State.NumberFractional => {
                 p.complete = p.after_value_state == State.TopLevelEnd;
                 switch (c) {
-                    '0' ... '9' => {
+                    '0'...'9' => {
                         // another digit
                     },
-                    'e',
-                    'E' => {
+                    'e', 'E' => {
                         p.number_is_integer = false;
                         p.state = State.NumberExponent;
                     },
@@ -768,8 +729,7 @@ pub const StreamingJsonParser = struct {
             State.NumberMaybeExponent => {
                 p.complete = p.after_value_state == State.TopLevelEnd;
                 switch (c) {
-                    'e',
-                    'E' => {
+                    'e', 'E' => {
                         p.number_is_integer = false;
                         p.state = State.NumberExponent;
                     },
@@ -782,12 +742,11 @@ pub const StreamingJsonParser = struct {
             },
 
             State.NumberExponent => switch (c) {
-                '-',
-                '+' => {
+                '-', '+' => {
                     p.complete = false;
                     p.state = State.NumberExponentDigitsRequired;
                 },
-                '0' ... '9' => {
+                '0'...'9' => {
                     p.complete = p.after_value_state == State.TopLevelEnd;
                     p.state = State.NumberExponentDigits;
                 },
@@ -797,7 +756,7 @@ pub const StreamingJsonParser = struct {
             },
 
             State.NumberExponentDigitsRequired => switch (c) {
-                '0' ... '9' => {
+                '0'...'9' => {
                     p.complete = p.after_value_state == State.TopLevelEnd;
                     p.state = State.NumberExponentDigits;
                 },
@@ -809,7 +768,7 @@ pub const StreamingJsonParser = struct {
             State.NumberExponentDigits => {
                 p.complete = p.after_value_state == State.TopLevelEnd;
                 switch (c) {
-                    '0' ... '9' => {
+                    '0'...'9' => {
                         // another digit
                     },
                     else => {
@@ -1257,8 +1216,7 @@ pub const JsonParser = struct {
                 Token.Id.Null => {
                     try p.stack.append(Value.Null);
                 },
-                Token.Id.ObjectEnd,
-                Token.Id.ArrayEnd => {
+                Token.Id.ObjectEnd, Token.Id.ArrayEnd => {
                     unreachable;
                 },
             },
std/macho.zig
@@ -58,15 +58,15 @@ pub const SymbolTable = struct {
     // code, its displacement is different.
     pub fn deinit(self: &SymbolTable) void {
         self.allocator.free(self.symbols);
-        self.symbols = []const Symbol {};
+        self.symbols = []const Symbol{};
 
         self.allocator.free(self.strings);
-        self.strings = []const u8 {};
+        self.strings = []const u8{};
     }
 
     pub fn search(self: &const SymbolTable, address: usize) ?&const Symbol {
         var min: usize = 0;
-        var max: usize = self.symbols.len - 1;  // Exclude sentinel.
+        var max: usize = self.symbols.len - 1; // Exclude sentinel.
         while (min < max) {
             const mid = min + (max - min) / 2;
             const curr = &self.symbols[mid];
@@ -118,10 +118,11 @@ pub fn loadSymbols(allocator: &mem.Allocator, in: &io.FileInStream) !SymbolTable
     try in.stream.readNoEof(strings);
 
     var nsyms: usize = 0;
-    for (syms) |sym| if (isSymbol(sym)) nsyms += 1;
+    for (syms) |sym|
+        if (isSymbol(sym)) nsyms += 1;
     if (nsyms == 0) return error.MissingDebugInfo;
 
-    var symbols = try allocator.alloc(Symbol, nsyms + 1);  // Room for sentinel.
+    var symbols = try allocator.alloc(Symbol, nsyms + 1); // Room for sentinel.
     errdefer allocator.free(symbols);
 
     var pie_slide: usize = 0;
@@ -132,7 +133,7 @@ pub fn loadSymbols(allocator: &mem.Allocator, in: &io.FileInStream) !SymbolTable
         const end = ??mem.indexOfScalarPos(u8, strings, start, 0);
         const name = strings[start..end];
         const address = sym.n_value;
-        symbols[nsym] = Symbol { .name = name, .address = address };
+        symbols[nsym] = Symbol{ .name = name, .address = address };
         nsym += 1;
         if (is_pie and mem.eql(u8, name, "_SymbolTable_deinit")) {
             pie_slide = @ptrToInt(SymbolTable.deinit) - address;
@@ -145,13 +146,14 @@ pub fn loadSymbols(allocator: &mem.Allocator, in: &io.FileInStream) !SymbolTable
     // Insert the sentinel.  Since we don't know where the last function ends,
     // we arbitrarily limit it to the start address + 4 KB.
     const top = symbols[nsyms - 1].address + 4096;
-    symbols[nsyms] = Symbol { .name = "", .address = top };
+    symbols[nsyms] = Symbol{ .name = "", .address = top };
 
     if (pie_slide != 0) {
-        for (symbols) |*symbol| symbol.address += pie_slide;
+        for (symbols) |*symbol|
+            symbol.address += pie_slide;
     }
 
-    return SymbolTable {
+    return SymbolTable{
         .allocator = allocator,
         .symbols = symbols,
         .strings = strings,
std/net.zig
@@ -19,24 +19,30 @@ pub const Address = struct {
     os_addr: OsAddress,
 
     pub fn initIp4(ip4: u32, port: u16) Address {
-        return Address{ .os_addr = posix.sockaddr{ .in = posix.sockaddr_in{
-            .family = posix.AF_INET,
-            .port = std.mem.endianSwapIfLe(u16, port),
-            .addr = ip4,
-            .zero = []u8{0} ** 8,
-        } } };
+        return Address{
+            .os_addr = posix.sockaddr{
+                .in = posix.sockaddr_in{
+                    .family = posix.AF_INET,
+                    .port = std.mem.endianSwapIfLe(u16, port),
+                    .addr = ip4,
+                    .zero = []u8{0} ** 8,
+                },
+            },
+        };
     }
 
     pub fn initIp6(ip6: &const Ip6Addr, port: u16) Address {
         return Address{
             .family = posix.AF_INET6,
-            .os_addr = posix.sockaddr{ .in6 = posix.sockaddr_in6{
-                .family = posix.AF_INET6,
-                .port = std.mem.endianSwapIfLe(u16, port),
-                .flowinfo = 0,
-                .addr = ip6.addr,
-                .scope_id = ip6.scope_id,
-            } },
+            .os_addr = posix.sockaddr{
+                .in6 = posix.sockaddr_in6{
+                    .family = posix.AF_INET6,
+                    .port = std.mem.endianSwapIfLe(u16, port),
+                    .flowinfo = 0,
+                    .addr = ip6.addr,
+                    .scope_id = ip6.scope_id,
+                },
+            },
         };
     }
 
std/segmented_list.zig
@@ -5,7 +5,7 @@ const Allocator = std.mem.Allocator;
 // Imagine that `fn at(self: &Self, index: usize) &T` is a customer asking for a box
 // from a warehouse, based on a flat array, boxes ordered from 0 to N - 1.
 // But the warehouse actually stores boxes in shelves of increasing powers of 2 sizes.
-// So when the customer requests a box index, we have to translate it to shelf index 
+// So when the customer requests a box index, we have to translate it to shelf index
 // and box index within that shelf. Illustration:
 //
 // customer indexes:
@@ -37,14 +37,14 @@ const Allocator = std.mem.Allocator;
 // Now we complicate it a little bit further by adding a preallocated shelf, which must be
 // a power of 2:
 // prealloc=4
-// 
+//
 // customer indexes:
 // prealloc:  0  1  2  3
 //  shelf 0:  4  5  6  7  8  9 10 11
 //  shelf 1: 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
 //  shelf 2: 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
 // ...
-// 
+//
 // warehouse indexes:
 // prealloc:  0  1  2  3
 //  shelf 0:  0  1  2  3  4  5  6  7
std/sort.zig
@@ -317,7 +317,6 @@ pub fn sort(comptime T: type, items: []T, lessThan: fn(lhs: &const T, rhs: &cons
             // 6. merge each A block with any B values that follow, using the cache or the second internal buffer
             // 7. sort the second internal buffer if it exists
             // 8. redistribute the two internal buffers back into the items
-
             var block_size: usize = math.sqrt(iterator.length());
             var buffer_size = iterator.length() / block_size + 1;
 
std/unicode.zig
@@ -58,6 +58,7 @@ pub fn utf8Encode(c: u32, out: []u8) !u3 {
 }
 
 const Utf8DecodeError = Utf8Decode2Error || Utf8Decode3Error || Utf8Decode4Error;
+
 /// Decodes the UTF-8 codepoint encoded in the given slice of bytes.
 /// bytes.len must be equal to utf8ByteSequenceLength(bytes[0]) catch unreachable.
 /// If you already know the length at comptime, you can call one of
@@ -150,7 +151,9 @@ pub fn utf8ValidateSlice(s: []const u8) bool {
                 return false;
             }
 
-            if (utf8Decode(s[i..i+cp_len])) |_| {} else |_| { return false; }
+            if (utf8Decode(s[i..i + cp_len])) |_| {} else |_| {
+                return false;
+            }
             i += cp_len;
         } else |err| {
             return false;
@@ -179,9 +182,7 @@ pub const Utf8View = struct {
     }
 
     pub fn initUnchecked(s: []const u8) Utf8View {
-        return Utf8View {
-            .bytes = s,
-        };
+        return Utf8View{ .bytes = s };
     }
 
     pub fn initComptime(comptime s: []const u8) Utf8View {
@@ -191,12 +192,12 @@ pub const Utf8View = struct {
             error.InvalidUtf8 => {
                 @compileError("invalid utf8");
                 unreachable;
-            }
+            },
         }
     }
 
     pub fn iterator(s: &const Utf8View) Utf8Iterator {
-        return Utf8Iterator {
+        return Utf8Iterator{
             .bytes = s.bytes,
             .i = 0,
         };
@@ -215,7 +216,7 @@ const Utf8Iterator = struct {
         const cp_len = utf8ByteSequenceLength(it.bytes[it.i]) catch unreachable;
 
         it.i += cp_len;
-        return it.bytes[it.i-cp_len..it.i];
+        return it.bytes[it.i - cp_len..it.i];
     }
 
     pub fn nextCodepoint(it: &Utf8Iterator) ?u32 {
@@ -304,9 +305,12 @@ test "utf8 view bad" {
 fn testUtf8ViewBad() void {
     // Compile-time error.
     // const s3 = Utf8View.initComptime("\xfe\xf2");
-
     const s = Utf8View.init("hel\xadlo");
-    if (s) |_| { unreachable; } else |err| { debug.assert(err == error.InvalidUtf8); }
+    if (s) |_| {
+        unreachable;
+    } else |err| {
+        debug.assert(err == error.InvalidUtf8);
+    }
 }
 
 test "utf8 view ok" {
test/cases/bugs/394.zig
@@ -10,11 +10,9 @@ const S = struct {
 const assert = @import("std").debug.assert;
 
 test "bug 394 fixed" {
-    const x = S {
+    const x = S{
         .x = 3,
-        .y = E {
-            .B = 1,
-        },
+        .y = E{ .B = 1 },
     };
     assert(x.x == 3);
 }
test/cases/bugs/656.zig
@@ -14,10 +14,8 @@ test "nullable if after an if in a switch prong of a switch with 2 prongs in an
 }
 
 fn foo(a: bool, b: bool) void {
-    var prefix_op = PrefixOp {
-        .AddrOf = Value {
-            .align_expr = 1234,
-        },
+    var prefix_op = PrefixOp{
+        .AddrOf = Value{ .align_expr = 1234 },
     };
     if (a) {} else {
         switch (prefix_op) {
test/cases/bugs/828.zig
@@ -1,14 +1,10 @@
 const CountBy = struct {
     a: usize,
 
-    const One = CountBy {
-        .a = 1,
-    };
+    const One = CountBy{ .a = 1 };
 
     pub fn counter(self: &const CountBy) Counter {
-        return Counter {
-            .i = 0,
-        };
+        return Counter{ .i = 0 };
     }
 };
 
test/cases/align.zig
@@ -70,7 +70,7 @@ test "specifying alignment allows pointer cast" {
     testBytesAlign(0x33);
 }
 fn testBytesAlign(b: u8) void {
-    var bytes align(4) = []u8 {
+    var bytes align(4) = []u8{
         b,
         b,
         b,
@@ -84,7 +84,7 @@ test "specifying alignment allows slice cast" {
     testBytesAlignSlice(0x33);
 }
 fn testBytesAlignSlice(b: u8) void {
-    var bytes align(4) = []u8 {
+    var bytes align(4) = []u8{
         b,
         b,
         b,
@@ -107,7 +107,7 @@ fn expects4(x: &align(4) u32) void {
 }
 
 test "@alignCast slices" {
-    var array align(4) = []u32 {
+    var array align(4) = []u32{
         1,
         1,
     };
@@ -169,7 +169,7 @@ test "@ptrCast preserves alignment of bigger source" {
 
 test "compile-time known array index has best alignment possible" {
     // take full advantage of over-alignment
-    var array align(4) = []u8 {
+    var array align(4) = []u8{
         1,
         2,
         3,
@@ -181,7 +181,7 @@ test "compile-time known array index has best alignment possible" {
     assert(@typeOf(&array[3]) == &u8);
 
     // because align is too small but we still figure out to use 2
-    var bigger align(2) = []u64 {
+    var bigger align(2) = []u64{
         1,
         2,
         3,
@@ -193,7 +193,7 @@ test "compile-time known array index has best alignment possible" {
     assert(@typeOf(&bigger[3]) == &align(2) u64);
 
     // because pointer is align 2 and u32 align % 2 == 0 we can assume align 2
-    var smaller align(2) = []u32 {
+    var smaller align(2) = []u32{
         1,
         2,
         3,
test/cases/array.zig
@@ -34,7 +34,7 @@ test "void arrays" {
 }
 
 test "array literal" {
-    const hex_mult = []u16 {
+    const hex_mult = []u16{
         4096,
         256,
         16,
@@ -54,7 +54,7 @@ test "array dot len const expr" {
 const ArrayDotLenConstExpr = struct {
     y: [some_array.len]u8,
 };
-const some_array = []u8 {
+const some_array = []u8{
     0,
     1,
     2,
@@ -62,7 +62,7 @@ const some_array = []u8 {
 };
 
 test "nested arrays" {
-    const array_of_strings = [][]const u8 {
+    const array_of_strings = [][]const u8{
         "hello",
         "this",
         "is",
@@ -86,9 +86,7 @@ const Str = struct {
     a: []Sub,
 };
 test "set global var array via slice embedded in struct" {
-    var s = Str {
-        .a = s_array[0..],
-    };
+    var s = Str{ .a = s_array[0..] };
 
     s.a[0].b = 1;
     s.a[1].b = 2;
@@ -100,7 +98,7 @@ test "set global var array via slice embedded in struct" {
 }
 
 test "array literal with specified size" {
-    var array = [2]u8 {
+    var array = [2]u8{
         1,
         2,
     };
test/cases/cast.zig
@@ -33,27 +33,21 @@ fn funcWithConstPtrPtr(x: &const &i32) void {
 }
 
 test "implicitly cast a container to a const pointer of it" {
-    const z = Struct(void) {
-        .x = void{},
-    };
+    const z = Struct(void){ .x = void{} };
     assert(0 == @sizeOf(@typeOf(z)));
     assert(void{} == Struct(void).pointer(z).x);
     assert(void{} == Struct(void).pointer(&z).x);
     assert(void{} == Struct(void).maybePointer(z).x);
     assert(void{} == Struct(void).maybePointer(&z).x);
     assert(void{} == Struct(void).maybePointer(null).x);
-    const s = Struct(u8) {
-        .x = 42,
-    };
+    const s = Struct(u8){ .x = 42 };
     assert(0 != @sizeOf(@typeOf(s)));
     assert(42 == Struct(u8).pointer(s).x);
     assert(42 == Struct(u8).pointer(&s).x);
     assert(42 == Struct(u8).maybePointer(s).x);
     assert(42 == Struct(u8).maybePointer(&s).x);
     assert(0 == Struct(u8).maybePointer(null).x);
-    const u = Union {
-        .x = 42,
-    };
+    const u = Union{ .x = 42 };
     assert(42 == Union.pointer(u).x);
     assert(42 == Union.pointer(&u).x);
     assert(42 == Union.maybePointer(u).x);
@@ -77,9 +71,7 @@ fn Struct(comptime T: type) type {
         }
 
         fn maybePointer(self: ?&const Self) Self {
-            const none = Self {
-                .x = if (T == void) void{} else 0,
-            };
+            const none = Self{ .x = if (T == void) void{} else 0 };
             return (self ?? &none).*;
         }
     };
@@ -93,9 +85,7 @@ const Union = union {
     }
 
     fn maybePointer(self: ?&const Union) Union {
-        const none = Union {
-            .x = 0,
-        };
+        const none = Union{ .x = 0 };
         return (self ?? &none).*;
     }
 };
@@ -130,9 +120,7 @@ test "implicitly cast indirect pointer to maybe-indirect pointer" {
             return ((??p).*.*).x;
         }
     };
-    const s = S {
-        .x = 42,
-    };
+    const s = S{ .x = 42 };
     const p = &s;
     const q = &p;
     const r = &q;
@@ -202,9 +190,7 @@ fn castToMaybeTypeError(z: i32) void {
     const f = z;
     const g: error!?i32 = f;
 
-    const a = A {
-        .a = z,
-    };
+    const a = A{ .a = z };
     const b: error!?A = a;
     assert((??(b catch unreachable)).a == 1);
 }
@@ -343,7 +329,6 @@ test "peer type resolution: error and [N]T" {
     // TODO: implicit error!T to error!U where T can implicitly cast to U
     //assert(mem.eql(u8, try testPeerErrorAndArray(0), "OK"));
     //comptime assert(mem.eql(u8, try testPeerErrorAndArray(0), "OK"));
-
     assert(mem.eql(u8, try testPeerErrorAndArray2(1), "OKK"));
     comptime assert(mem.eql(u8, try testPeerErrorAndArray2(1), "OKK"));
 }
@@ -387,7 +372,7 @@ fn cast128Float(x: u128) f128 {
 }
 
 test "const slice widen cast" {
-    const bytes align(4) = []u8 {
+    const bytes align(4) = []u8{
         0x12,
         0x12,
         0x12,
test/cases/const_slice_child.zig
@@ -4,7 +4,7 @@ const assert = debug.assert;
 var argv: &const &const u8 = undefined;
 
 test "const slice child" {
-    const strs = ([]&const u8) {
+    const strs = ([]&const u8){
         c"one",
         c"two",
         c"three",
test/cases/coroutines.zig
@@ -10,7 +10,6 @@ test "create a coroutine and cancel it" {
     cancel p;
     assert(x == 2);
 }
-
 async fn simpleAsyncFn() void {
     x += 1;
     suspend;
@@ -28,7 +27,6 @@ test "coroutine suspend, resume, cancel" {
 
     assert(std.mem.eql(u8, points, "abcdefg"));
 }
-
 async fn testAsyncSeq() void {
     defer seq('e');
 
@@ -36,7 +34,7 @@ async fn testAsyncSeq() void {
     suspend;
     seq('d');
 }
-var points = []u8 {0} ** "abcdefg".len;
+var points = []u8{0} ** "abcdefg".len;
 var index: usize = 0;
 
 fn seq(c: u8) void {
@@ -54,7 +52,6 @@ test "coroutine suspend with block" {
 
 var a_promise: promise = undefined;
 var result = false;
-
 async fn testSuspendBlock() void {
     suspend |p| {
         comptime assert(@typeOf(p) == promise->void);
@@ -75,7 +72,6 @@ test "coroutine await" {
     assert(await_final_result == 1234);
     assert(std.mem.eql(u8, await_points, "abcdefghi"));
 }
-
 async fn await_amain() void {
     await_seq('b');
     const p = async await_another() catch unreachable;
@@ -83,7 +79,6 @@ async fn await_amain() void {
     await_final_result = await p;
     await_seq('h');
 }
-
 async fn await_another() i32 {
     await_seq('c');
     suspend |p| {
@@ -94,7 +89,7 @@ async fn await_another() i32 {
     return 1234;
 }
 
-var await_points = []u8 {0} ** "abcdefghi".len;
+var await_points = []u8{0} ** "abcdefghi".len;
 var await_seq_index: usize = 0;
 
 fn await_seq(c: u8) void {
@@ -111,7 +106,6 @@ test "coroutine await early return" {
     assert(early_final_result == 1234);
     assert(std.mem.eql(u8, early_points, "abcdef"));
 }
-
 async fn early_amain() void {
     early_seq('b');
     const p = async early_another() catch unreachable;
@@ -119,13 +113,12 @@ async fn early_amain() void {
     early_final_result = await p;
     early_seq('e');
 }
-
 async fn early_another() i32 {
     early_seq('c');
     return 1234;
 }
 
-var early_points = []u8 {0} ** "abcdef".len;
+var early_points = []u8{0} ** "abcdef".len;
 var early_seq_index: usize = 0;
 
 fn early_seq(c: u8) void {
@@ -141,7 +134,6 @@ test "coro allocation failure" {
         error.OutOfMemory => {},
     }
 }
-
 async fn asyncFuncThatNeverGetsRun() void {
     @panic("coro frame allocation should fail");
 }
@@ -164,15 +156,12 @@ test "async fn pointer in a struct field" {
     const Foo = struct {
         bar: async<&std.mem.Allocator> fn(&i32) void,
     };
-    var foo = Foo {
-        .bar = simpleAsyncFn2,
-    };
+    var foo = Foo{ .bar = simpleAsyncFn2 };
     const p = (async<std.debug.global_allocator> foo.bar(&data)) catch unreachable;
     assert(data == 2);
     cancel p;
     assert(data == 4);
 }
-
 async<&std.mem.Allocator> fn simpleAsyncFn2(y: &i32) void {
     defer y.* += 2;
     y.* += 1;
@@ -184,7 +173,6 @@ test "async fn with inferred error set" {
     resume p;
     cancel p;
 }
-
 async fn failing() !void {
     suspend;
     return error.Fail;
@@ -208,12 +196,10 @@ test "error return trace across suspend points - async return" {
 fn nonFailing() (promise->error!void) {
     return async<std.debug.global_allocator> suspendThenFail() catch unreachable;
 }
-
 async fn suspendThenFail() error!void {
     suspend;
     return error.Fail;
 }
-
 async fn printTrace(p: promise->error!void) void {
     (await p) catch |e| {
         std.debug.assert(e == error.Fail);
@@ -234,7 +220,6 @@ test "break from suspend" {
     cancel p;
     std.debug.assert(my_result == 2);
 }
-
 async fn testBreakFromSuspend(my_result: &i32) void {
     s: suspend |p| {
         break :s;
test/cases/enum.zig
@@ -2,11 +2,9 @@ const assert = @import("std").debug.assert;
 const mem = @import("std").mem;
 
 test "enum type" {
-    const foo1 = Foo {
-        .One = 13,
-    };
-    const foo2 = Foo {
-        .Two = Point {
+    const foo1 = Foo{ .One = 13 };
+    const foo2 = Foo{
+        .Two = Point{
             .x = 1234,
             .y = 5678,
         },
@@ -48,18 +46,12 @@ const Bar = enum {
 };
 
 fn returnAnInt(x: i32) Foo {
-    return Foo {
-        .One = x,
-    };
+    return Foo{ .One = x };
 }
 
 test "constant enum with payload" {
-    var empty = AnEnumWithPayload {
-        .Empty = {},
-    };
-    var full = AnEnumWithPayload {
-        .Full = 13,
-    };
+    var empty = AnEnumWithPayload{ .Empty = {} };
+    var full = AnEnumWithPayload{ .Full = 13 };
     shouldBeEmpty(empty);
     shouldBeNotEmpty(full);
 }
@@ -737,7 +729,7 @@ const BitFieldOfEnums = packed struct {
     c: C,
 };
 
-const bit_field_1 = BitFieldOfEnums {
+const bit_field_1 = BitFieldOfEnums{
     .a = A.Two,
     .b = B.Three3,
     .c = C.Four4,
test/cases/enum_with_members.zig
@@ -15,12 +15,8 @@ const ET = union(enum) {
 };
 
 test "enum with members" {
-    const a = ET {
-        .SINT = -42,
-    };
-    const b = ET {
-        .UINT = 42,
-    };
+    const a = ET{ .SINT = -42 };
+    const b = ET{ .UINT = 42 };
     var buf: [20]u8 = undefined;
 
     assert((a.print(buf[0..]) catch unreachable) == 3);
test/cases/error.zig
@@ -92,7 +92,7 @@ test "error set type " {
     comptime testErrorSetType();
 }
 
-const MyErrSet = error {
+const MyErrSet = error{
     OutOfMemory,
     FileNotFound,
 };
@@ -114,11 +114,11 @@ test "explicit error set cast" {
     comptime testExplicitErrorSetCast(Set1.A);
 }
 
-const Set1 = error {
+const Set1 = error{
     A,
     B,
 };
-const Set2 = error {
+const Set2 = error{
     A,
     C,
 };
@@ -134,8 +134,7 @@ test "comptime test error for empty error set" {
     comptime testComptimeTestErrorEmptySet(1234);
 }
 
-const EmptyErrorSet = error {
-};
+const EmptyErrorSet = error{};
 
 fn testComptimeTestErrorEmptySet(x: EmptyErrorSet!i32) void {
     if (x) |v| assert(v == 1234) else |err| @compileError("bad");
@@ -151,9 +150,10 @@ test "comptime err to int of error set with only 1 possible value" {
     testErrToIntWithOnePossibleValue(error.A, u32(error.A));
     comptime testErrToIntWithOnePossibleValue(error.A, u32(error.A));
 }
-fn testErrToIntWithOnePossibleValue(x: error {
-    A,
-}, comptime value: u32) void {
+fn testErrToIntWithOnePossibleValue(
+    x: error{A},
+    comptime value: u32,
+) void {
     if (u32(x) != value) {
         @compileError("bad");
     }
@@ -197,16 +197,14 @@ fn foo2(f: fn() error!void) void {
     const x = f();
 }
 
-fn bar2() (error {
-}!void) {}
+fn bar2() (error{}!void) {}
 
 test "error: Zero sized error set returned with value payload crash" {
     _ = foo3(0);
     _ = comptime foo3(0);
 }
 
-const Error = error {
-};
+const Error = error{};
 fn foo3(b: usize) Error!usize {
     return b;
 }
test/cases/eval.zig
@@ -72,12 +72,12 @@ const Point = struct {
     x: i32,
     y: i32,
 };
-const static_point_list = []Point {
+const static_point_list = []Point{
     makePoint(1, 2),
     makePoint(3, 4),
 };
 fn makePoint(x: i32, y: i32) Point {
-    return Point {
+    return Point{
         .x = x,
         .y = y,
     };
@@ -92,13 +92,11 @@ pub const Vec3 = struct {
     data: [3]f32,
 };
 pub fn vec3(x: f32, y: f32, z: f32) Vec3 {
-    return Vec3 {
-        .data = []f32 {
-            x,
-            y,
-            z,
-        },
-    };
+    return Vec3{ .data = []f32{
+        x,
+        y,
+        z,
+    } };
 }
 
 test "constant expressions" {
@@ -117,22 +115,22 @@ const Vertex = struct {
     g: f32,
     b: f32,
 };
-const vertices = []Vertex {
-    Vertex {
+const vertices = []Vertex{
+    Vertex{
         .x = -0.6,
         .y = -0.4,
         .r = 1.0,
         .g = 0.0,
         .b = 0.0,
     },
-    Vertex {
+    Vertex{
         .x = 0.6,
         .y = -0.4,
         .r = 0.0,
         .g = 1.0,
         .b = 0.0,
     },
-    Vertex {
+    Vertex{
         .x = 0.0,
         .y = 0.6,
         .r = 0.0,
@@ -149,7 +147,7 @@ const StInitStrFoo = struct {
     x: i32,
     y: bool,
 };
-var st_init_str_foo = StInitStrFoo {
+var st_init_str_foo = StInitStrFoo{
     .x = 13,
     .y = true,
 };
@@ -158,7 +156,7 @@ test "statically initalized array literal" {
     const y: [4]u8 = st_init_arr_lit_x;
     assert(y[3] == 4);
 }
-const st_init_arr_lit_x = []u8 {
+const st_init_arr_lit_x = []u8{
     1,
     2,
     3,
@@ -220,16 +218,16 @@ const CmdFn = struct {
     func: fn(i32) i32,
 };
 
-const cmd_fns = []CmdFn {
-    CmdFn {
+const cmd_fns = []CmdFn{
+    CmdFn{
         .name = "one",
         .func = one,
     },
-    CmdFn {
+    CmdFn{
         .name = "two",
         .func = two,
     },
-    CmdFn {
+    CmdFn{
         .name = "three",
         .func = three,
     },
@@ -289,9 +287,7 @@ const SimpleStruct = struct {
     }
 };
 
-var simple_struct = SimpleStruct {
-    .field = 1234,
-};
+var simple_struct = SimpleStruct{ .field = 1234 };
 
 const bound_fn = simple_struct.method;
 
@@ -341,9 +337,7 @@ const Foo = struct {
     name: []const u8,
 };
 
-var foo_contents = Foo {
-    .name = "a",
-};
+var foo_contents = Foo{ .name = "a" };
 const foo_ref = &foo_contents;
 
 test "create global array with for loop" {
@@ -529,9 +523,7 @@ const SingleFieldStruct = struct {
 };
 test "const ptr to comptime mutable data is not memoized" {
     comptime {
-        var foo = SingleFieldStruct {
-            .x = 1,
-        };
+        var foo = SingleFieldStruct{ .x = 1 };
         assert(foo.read_x() == 1);
         foo.x = 2;
         assert(foo.read_x() == 2);
@@ -574,9 +566,7 @@ pub const Info = struct {
     version: u8,
 };
 
-pub const diamond_info = Info {
-    .version = 0,
-};
+pub const diamond_info = Info{ .version = 0 };
 
 test "comptime modification of const struct field" {
     comptime {
test/cases/field_parent_ptr.zig
@@ -17,7 +17,7 @@ const Foo = struct {
     d: i32,
 };
 
-const foo = Foo {
+const foo = Foo{
     .a = true,
     .b = 0.123,
     .c = 1234,
test/cases/fn.zig
@@ -73,7 +73,7 @@ fn fnWithUnreachable() noreturn {
 }
 
 test "function pointers" {
-    const fns = []@typeOf(fn1) {
+    const fns = []@typeOf(fn1){
         fn1,
         fn2,
         fn3,
test/cases/fn_in_struct_in_comptime.zig
@@ -1,6 +1,6 @@
 const assert = @import("std").debug.assert;
 
-fn get_foo() fn(&u8)usize {
+fn get_foo() fn(&u8) usize {
     comptime {
         return struct {
             fn func(ptr: &u8) usize {
test/cases/for.zig
@@ -3,7 +3,7 @@ const assert = std.debug.assert;
 const mem = std.mem;
 
 test "continue in for loop" {
-    const array = []i32 {
+    const array = []i32{
         1,
         2,
         3,
@@ -35,7 +35,7 @@ fn mangleString(s: []u8) void {
 }
 
 test "basic for loop" {
-    const expected_result = []u8 {
+    const expected_result = []u8{
         9,
         8,
         7,
@@ -57,7 +57,7 @@ test "basic for loop" {
     var buffer: [expected_result.len]u8 = undefined;
     var buf_index: usize = 0;
 
-    const array = []u8 {
+    const array = []u8{
         9,
         8,
         7,
test/cases/generics.zig
@@ -81,11 +81,11 @@ test "function with return type type" {
 }
 
 test "generic struct" {
-    var a1 = GenNode(i32) {
+    var a1 = GenNode(i32){
         .value = 13,
         .next = null,
     };
-    var b1 = GenNode(bool) {
+    var b1 = GenNode(bool){
         .value = true,
         .next = null,
     };
@@ -120,8 +120,8 @@ fn aGenericFn(comptime T: type, comptime a: T, b: T) T {
 }
 
 test "generic fn with implicit cast" {
-    assert(getFirstByte(u8, []u8 {13}) == 13);
-    assert(getFirstByte(u16, []u16 {
+    assert(getFirstByte(u8, []u8{13}) == 13);
+    assert(getFirstByte(u16, []u16{
         0,
         13,
     }) == 0);
@@ -133,7 +133,7 @@ fn getFirstByte(comptime T: type, mem: []const T) u8 {
     return getByte(@ptrCast(&const u8, &mem[0]));
 }
 
-const foos = []fn(var) bool {
+const foos = []fn(var) bool{
     foo1,
     foo2,
 };
test/cases/incomplete_struct_param_tld.zig
@@ -21,11 +21,9 @@ fn foo(a: &const A) i32 {
 }
 
 test "incomplete struct param top level declaration" {
-    const a = A {
-        .b = B {
-            .c = C {
-                .x = 13,
-            },
+    const a = A{
+        .b = B{
+            .c = C{ .x = 13 },
         },
     };
     assert(foo(a) == 13);
test/cases/math.zig
@@ -197,7 +197,7 @@ fn test_u64_div() void {
     assert(result.remainder == 100663296);
 }
 fn divWithResult(a: u64, b: u64) DivResult {
-    return DivResult {
+    return DivResult{
         .quotient = a / b,
         .remainder = a % b,
     };
test/cases/misc.zig
@@ -232,7 +232,7 @@ test "string escapes" {
 }
 
 test "multiline string" {
-    const s1 = 
+    const s1 =
         \\one
         \\two)
         \\three
@@ -242,7 +242,7 @@ test "multiline string" {
 }
 
 test "multiline C string" {
-    const s1 = 
+    const s1 =
         c\\one
         c\\two)
         c\\three
@@ -350,15 +350,13 @@ const Test3Point = struct {
     x: i32,
     y: i32,
 };
-const test3_foo = Test3Foo {
-    .Three = Test3Point {
+const test3_foo = Test3Foo{
+    .Three = Test3Point{
         .x = 3,
         .y = 4,
     },
 };
-const test3_bar = Test3Foo {
-    .Two = 13,
-};
+const test3_bar = Test3Foo{ .Two = 13 };
 fn test3_1(f: &const Test3Foo) void {
     switch (f.*) {
         Test3Foo.Three => |pt| {
@@ -417,7 +415,7 @@ test "C string concatenation" {
 
 test "cast slice to u8 slice" {
     assert(@sizeOf(i32) == 4);
-    var big_thing_array = []i32 {
+    var big_thing_array = []i32{
         1,
         2,
         3,
@@ -458,9 +456,9 @@ test "non const ptr to aliased type" {
 }
 
 test "array 2D const double ptr" {
-    const rect_2d_vertexes = [][1]f32 {
-        []f32 {1.0},
-        []f32 {2.0},
+    const rect_2d_vertexes = [][1]f32{
+        []f32{1.0},
+        []f32{2.0},
     };
     testArray2DConstDoublePtr(&rect_2d_vertexes[0][0]);
 }
@@ -565,7 +563,7 @@ test "volatile load and store" {
 test "slice string literal has type []const u8" {
     comptime {
         assert(@typeOf("aoeu"[0..]) == []const u8);
-        const array = []i32 {
+        const array = []i32{
             1,
             2,
             3,
@@ -581,13 +579,9 @@ test "global variable initialized to global variable array element" {
 const GDTEntry = struct {
     field: i32,
 };
-var gdt = []GDTEntry {
-    GDTEntry {
-        .field = 1,
-    },
-    GDTEntry {
-        .field = 2,
-    },
+var gdt = []GDTEntry{
+    GDTEntry{ .field = 1 },
+    GDTEntry{ .field = 2 },
 };
 var global_ptr = &gdt[0];
 
@@ -648,9 +642,7 @@ fn testStructInFn() void {
         kind: BlockKind,
     };
 
-    var block = Block {
-        .kind = 1234,
-    };
+    var block = Block{ .kind = 1234 };
 
     block.kind += 1;
 
@@ -694,12 +686,10 @@ const PackedEnum = packed enum {
 };
 
 test "packed struct, enum, union parameters in extern function" {
-    testPackedStuff(PackedStruct {
+    testPackedStuff(PackedStruct{
         .a = 1,
         .b = 2,
-    }, PackedUnion {
-        .a = 1,
-    }, PackedEnum.A);
+    }, PackedUnion{ .a = 1 }, PackedEnum.A);
 }
 
 export fn testPackedStuff(a: &const PackedStruct, b: &const PackedUnion, c: PackedEnum) void {}
test/cases/null.zig
@@ -58,7 +58,7 @@ fn foo(x: ?i32) ?bool {
 }
 
 test "if var maybe pointer" {
-    assert(shouldBeAPlus1(Particle {
+    assert(shouldBeAPlus1(Particle{
         .a = 14,
         .b = 1,
         .c = 1,
@@ -92,9 +92,7 @@ test "null literal outside function" {
 const SillyStruct = struct {
     context: ?i32,
 };
-const here_is_a_null_literal = SillyStruct {
-    .context = null,
-};
+const here_is_a_null_literal = SillyStruct{ .context = null };
 
 test "test null runtime" {
     testTestNullRuntime(null);
test/cases/reflection.zig
@@ -59,7 +59,7 @@ test "reflection: enum member types and names" {
 }
 
 test "reflection: @field" {
-    var f = Foo {
+    var f = Foo{
         .one = 42,
         .two = true,
         .three = void{},
test/cases/slice.zig
@@ -18,7 +18,7 @@ test "slice child property" {
 }
 
 test "runtime safety lets us slice from len..len" {
-    var an_array = []u8 {
+    var an_array = []u8{
         1,
         2,
         3,
test/cases/struct.zig
@@ -27,7 +27,7 @@ test "invake static method in global scope" {
 }
 
 test "void struct fields" {
-    const foo = VoidStructFieldsFoo {
+    const foo = VoidStructFieldsFoo{
         .a = void{},
         .b = 1,
         .c = void{},
@@ -96,16 +96,12 @@ test "struct byval assign" {
 }
 
 fn structInitializer() void {
-    const val = Val {
-        .x = 42,
-    };
+    const val = Val{ .x = 42 };
     assert(val.x == 42);
 }
 
 test "fn call of struct field" {
-    assert(callStructField(Foo {
-        .ptr = aFunc,
-    }) == 13);
+    assert(callStructField(Foo{ .ptr = aFunc }) == 13);
 }
 
 const Foo = struct {
@@ -121,9 +117,7 @@ fn callStructField(foo: &const Foo) i32 {
 }
 
 test "store member function in variable" {
-    const instance = MemberFnTestFoo {
-        .x = 1234,
-    };
+    const instance = MemberFnTestFoo{ .x = 1234 };
     const memberFn = MemberFnTestFoo.member;
     const result = memberFn(instance);
     assert(result == 1234);
@@ -136,17 +130,13 @@ const MemberFnTestFoo = struct {
 };
 
 test "call member function directly" {
-    const instance = MemberFnTestFoo {
-        .x = 1234,
-    };
+    const instance = MemberFnTestFoo{ .x = 1234 };
     const result = MemberFnTestFoo.member(instance);
     assert(result == 1234);
 }
 
 test "member functions" {
-    const r = MemberFnRand {
-        .seed = 1234,
-    };
+    const r = MemberFnRand{ .seed = 1234 };
     assert(r.getSeed() == 1234);
 }
 const MemberFnRand = struct {
@@ -165,7 +155,7 @@ const Bar = struct {
     y: i32,
 };
 fn makeBar(x: i32, y: i32) Bar {
-    return Bar {
+    return Bar{
         .x = x,
         .y = y,
     };
@@ -190,7 +180,7 @@ fn testReturnEmptyStructFromFn() EmptyStruct2 {
 }
 
 test "pass slice of empty struct to fn" {
-    assert(testPassSliceOfEmptyStructToFn([]EmptyStruct2 {EmptyStruct2{}}) == 1);
+    assert(testPassSliceOfEmptyStructToFn([]EmptyStruct2{EmptyStruct2{}}) == 1);
 }
 fn testPassSliceOfEmptyStructToFn(slice: []const EmptyStruct2) usize {
     return slice.len;
@@ -202,7 +192,7 @@ const APackedStruct = packed struct {
 };
 
 test "packed struct" {
-    var foo = APackedStruct {
+    var foo = APackedStruct{
         .x = 1,
         .y = 2,
     };
@@ -217,7 +207,7 @@ const BitField1 = packed struct {
     c: u2,
 };
 
-const bit_field_1 = BitField1 {
+const bit_field_1 = BitField1{
     .a = 1,
     .b = 2,
     .c = 3,
@@ -267,7 +257,7 @@ test "packed struct 24bits" {
         assert(@sizeOf(Foo96Bits) == 12);
     }
 
-    var value = Foo96Bits {
+    var value = Foo96Bits{
         .a = 0,
         .b = 0,
         .c = 0,
@@ -310,7 +300,7 @@ test "packed array 24bits" {
         assert(@sizeOf(FooArray24Bits) == 2 + 2 * 3 + 2);
     }
 
-    var bytes = []u8 {0} ** (@sizeOf(FooArray24Bits) + 1);
+    var bytes = []u8{0} ** (@sizeOf(FooArray24Bits) + 1);
     bytes[bytes.len - 1] = 0xaa;
     const ptr = &([]FooArray24Bits)(bytes[0..bytes.len - 1])[0];
     assert(ptr.a == 0);
@@ -360,7 +350,7 @@ test "aligned array of packed struct" {
         assert(@sizeOf(FooArrayOfAligned) == 2 * 2);
     }
 
-    var bytes = []u8 {0xbb} ** @sizeOf(FooArrayOfAligned);
+    var bytes = []u8{0xbb} ** @sizeOf(FooArrayOfAligned);
     const ptr = &([]FooArrayOfAligned)(bytes[0..bytes.len])[0];
 
     assert(ptr.a[0].a == 0xbb);
@@ -370,11 +360,11 @@ test "aligned array of packed struct" {
 }
 
 test "runtime struct initialization of bitfield" {
-    const s1 = Nibbles {
+    const s1 = Nibbles{
         .x = x1,
         .y = x1,
     };
-    const s2 = Nibbles {
+    const s2 = Nibbles{
         .x = u4(x2),
         .y = u4(x2),
     };
test/cases/struct_contains_slice_of_itself.zig
@@ -6,31 +6,31 @@ const Node = struct {
 };
 
 test "struct contains slice of itself" {
-    var other_nodes = []Node {
-        Node {
+    var other_nodes = []Node{
+        Node{
             .payload = 31,
             .children = []Node{},
         },
-        Node {
+        Node{
             .payload = 32,
             .children = []Node{},
         },
     };
-    var nodes = []Node {
-        Node {
+    var nodes = []Node{
+        Node{
             .payload = 1,
             .children = []Node{},
         },
-        Node {
+        Node{
             .payload = 2,
             .children = []Node{},
         },
-        Node {
+        Node{
             .payload = 3,
             .children = other_nodes[0..],
         },
     };
-    const root = Node {
+    const root = Node{
         .payload = 1234,
         .children = nodes[0..],
     };
test/cases/switch.zig
@@ -6,10 +6,7 @@ test "switch with numbers" {
 
 fn testSwitchWithNumbers(x: u32) void {
     const result = switch (x) {
-        1,
-        2,
-        3,
-        4 ... 8 => false,
+        1, 2, 3, 4...8 => false,
         13 => true,
         else => false,
     };
@@ -25,9 +22,9 @@ test "switch with all ranges" {
 
 fn testSwitchWithAllRanges(x: u32, y: u32) u32 {
     return switch (x) {
-        0 ... 100 => 1,
-        101 ... 200 => 2,
-        201 ... 300 => 3,
+        0...100 => 1,
+        101...200 => 2,
+        201...300 => 3,
         else => y,
     };
 }
@@ -37,10 +34,8 @@ test "implicit comptime switch" {
     const result = switch (x) {
         3 => 10,
         4 => 11,
-        5,
-        6 => 12,
-        7,
-        8 => 13,
+        5, 6 => 12,
+        7, 8 => 13,
         else => 14,
     };
 
@@ -86,15 +81,9 @@ const SwitchStatmentFoo = enum {
 };
 
 test "switch prong with variable" {
-    switchProngWithVarFn(SwitchProngWithVarEnum {
-        .One = 13,
-    });
-    switchProngWithVarFn(SwitchProngWithVarEnum {
-        .Two = 13.0,
-    });
-    switchProngWithVarFn(SwitchProngWithVarEnum {
-        .Meh = {},
-    });
+    switchProngWithVarFn(SwitchProngWithVarEnum{ .One = 13 });
+    switchProngWithVarFn(SwitchProngWithVarEnum{ .Two = 13.0 });
+    switchProngWithVarFn(SwitchProngWithVarEnum{ .Meh = {} });
 }
 const SwitchProngWithVarEnum = union(enum) {
     One: i32,
@@ -121,9 +110,7 @@ test "switch on enum using pointer capture" {
 }
 
 fn testSwitchEnumPtrCapture() void {
-    var value = SwitchProngWithVarEnum {
-        .One = 1234,
-    };
+    var value = SwitchProngWithVarEnum{ .One = 1234 };
     switch (value) {
         SwitchProngWithVarEnum.One => |*x| x.* += 1,
         else => unreachable,
@@ -136,12 +123,8 @@ fn testSwitchEnumPtrCapture() void {
 
 test "switch with multiple expressions" {
     const x = switch (returnsFive()) {
-        1,
-        2,
-        3 => 1,
-        4,
-        5,
-        6 => 2,
+        1, 2, 3 => 1,
+        4, 5, 6 => 2,
         else => i32(3),
     };
     assert(x == 2);
@@ -156,9 +139,7 @@ const Number = union(enum) {
     Three: f32,
 };
 
-const number = Number {
-    .Three = 1.23,
-};
+const number = Number{ .Three = 1.23 };
 
 fn returnsFalse() bool {
     switch (number) {
@@ -212,12 +193,11 @@ fn testSwitchHandleAllCasesExhaustive(x: u2) u2 {
 
 fn testSwitchHandleAllCasesRange(x: u8) u8 {
     return switch (x) {
-        0 ... 100 => u8(0),
-        101 ... 200 => 1,
-        201,
-        203 => 2,
+        0...100 => u8(0),
+        101...200 => 1,
+        201, 203 => 2,
         202 => 4,
-        204 ... 255 => 3,
+        204...255 => 3,
     };
 }
 
test/cases/switch_prong_err_enum.zig
@@ -14,9 +14,7 @@ const FormValue = union(enum) {
 
 fn doThing(form_id: u64) error!FormValue {
     return switch (form_id) {
-        17 => FormValue {
-            .Address = try readOnce(),
-        },
+        17 => FormValue{ .Address = try readOnce() },
         else => error.InvalidDebugInfo,
     };
 }
test/cases/switch_prong_implicit_cast.zig
@@ -7,12 +7,8 @@ const FormValue = union(enum) {
 
 fn foo(id: u64) !FormValue {
     return switch (id) {
-        2 => FormValue {
-            .Two = true,
-        },
-        1 => FormValue {
-            .One = {},
-        },
+        2 => FormValue{ .Two = true },
+        1 => FormValue{ .One = {} },
         else => return error.Whatever,
     };
 }
test/cases/this.zig
@@ -29,7 +29,7 @@ test "this refer to module call private fn" {
 }
 
 test "this refer to container" {
-    var pt = Point(i32) {
+    var pt = Point(i32){
         .x = 12,
         .y = 34,
     };
test/cases/try.zig
@@ -7,8 +7,7 @@ test "try on error union" {
 
 fn tryOnErrorUnionImpl() void {
     const x = if (returnsTen()) |val| val + 1 else |err| switch (err) {
-        error.ItBroke,
-        error.NoMem => 1,
+        error.ItBroke, error.NoMem => 1,
         error.CrappedOut => i32(2),
         else => unreachable,
     };
test/cases/type_info.zig
@@ -103,7 +103,7 @@ test "type info: error set, error union info" {
 }
 
 fn testErrorSet() void {
-    const TestErrorSet = error {
+    const TestErrorSet = error{
         First,
         Second,
         Third,
@@ -196,7 +196,7 @@ fn testStruct() void {
     assert(!struct_info.Struct.defs[0].data.Fn.is_extern);
     assert(struct_info.Struct.defs[0].data.Fn.lib_name == null);
     assert(struct_info.Struct.defs[0].data.Fn.return_type == void);
-    assert(struct_info.Struct.defs[0].data.Fn.fn_type == fn(&const TestStruct)void);
+    assert(struct_info.Struct.defs[0].data.Fn.fn_type == fn(&const TestStruct) void);
 }
 
 const TestStruct = packed struct {
test/cases/union.zig
@@ -50,10 +50,10 @@ test "basic unions" {
 
 test "comptime union field access" {
     comptime {
-        var foo = Foo { .int = 0 };
+        var foo = Foo{ .int = 0 };
         assert(foo.int == 0);
 
-        foo = Foo { .float = 42.42 };
+        foo = Foo{ .float = 42.42 };
         assert(foo.float == 42.42);
     }
 }
@@ -286,7 +286,6 @@ const PartialInstWithPayload = union(enum) {
     Compiled: i32,
 };
 
-
 test "access a member of tagged union with conflicting enum tag name" {
     const Bar = union(enum) {
         A: A,
test/cases/var_args.zig
@@ -58,7 +58,7 @@ fn extraFn(extra: u32, args: ...) usize {
     return args.len;
 }
 
-const foos = []fn(...) bool {
+const foos = []fn(...) bool{
     foo1,
     foo2,
 };
test/cases/void.zig
@@ -8,7 +8,7 @@ const Foo = struct {
 
 test "compare void with void compile time known" {
     comptime {
-        const foo = Foo {
+        const foo = Foo{
             .a = {},
             .b = 1,
             .c = {},
test/cases/while.zig
@@ -151,7 +151,7 @@ test "while on nullable with else result follow break prong" {
 test "while on error union with else result follow else prong" {
     const result = while (returnError()) |value| {
         break value;
-    } else|err| 
+    } else |err|
         i32(2);
     assert(result == 2);
 }
@@ -159,7 +159,7 @@ test "while on error union with else result follow else prong" {
 test "while on error union with else result follow break prong" {
     const result = while (returnSuccess(10)) |value| {
         break value;
-    } else|err| 
+    } else |err|
         i32(2);
     assert(result == 10);
 }
test/standalone/brace_expansion/main.zig
@@ -29,8 +29,7 @@ fn tokenize(input: []const u8) !ArrayList(Token) {
     for (input) |b, i| {
         switch (state) {
             State.Start => switch (b) {
-                'a' ... 'z',
-                'A' ... 'Z' => {
+                'a'...'z', 'A'...'Z' => {
                     state = State.Word;
                     tok_begin = i;
                 },
@@ -40,11 +39,8 @@ fn tokenize(input: []const u8) !ArrayList(Token) {
                 else => return error.InvalidInput,
             },
             State.Word => switch (b) {
-                'a' ... 'z',
-                'A' ... 'Z' => {},
-                '{',
-                '}',
-                ',' => {
+                'a'...'z', 'A'...'Z' => {},
+                '{', '}', ',' => {
                     try token_list.append(Token{ .Word = input[tok_begin..i] });
                     switch (b) {
                         '{' => try token_list.append(Token.OpenBrace),
@@ -103,8 +99,7 @@ fn parse(tokens: &const ArrayList(Token), token_index: &usize) ParseError!Node {
     };
 
     switch (tokens.items[token_index.*]) {
-        Token.Word,
-        Token.OpenBrace => {
+        Token.Word, Token.OpenBrace => {
             const pair = try global_allocator.alloc(Node, 2);
             pair[0] = result_node;
             pair[1] = try parse(tokens, token_index);
test/standalone/issue_339/test.zig
@@ -1,5 +1,8 @@
 const StackTrace = @import("builtin").StackTrace;
-pub fn panic(msg: []const u8, stack_trace: ?&StackTrace) noreturn { @breakpoint(); while (true) {} }
+pub fn panic(msg: []const u8, stack_trace: ?&StackTrace) noreturn {
+    @breakpoint();
+    while (true) {}
+}
 
 fn bar() error!void {}
 
test/standalone/pkg_import/pkg.zig
@@ -1,1 +1,3 @@
-pub fn add(a: i32, b: i32) i32 { return a + b; }
+pub fn add(a: i32, b: i32) i32 {
+    return a + b;
+}
test/standalone/use_alias/main.zig
@@ -2,7 +2,7 @@ const c = @import("c.zig");
 const assert = @import("std").debug.assert;
 
 test "symbol exists" {
-    var foo = c.Foo {
+    var foo = c.Foo{
         .a = 1,
         .b = 1,
     };
test/compare_output.zig
@@ -475,7 +475,7 @@ pub fn addCases(cases: &tests.CompareOutputContext) void {
             \\
         );
 
-        tc.setCommandLineArgs([][]const u8 {
+        tc.setCommandLineArgs([][]const u8{
             "first arg",
             "'a' 'b' \\",
             "bare",
@@ -516,7 +516,7 @@ pub fn addCases(cases: &tests.CompareOutputContext) void {
             \\
         );
 
-        tc.setCommandLineArgs([][]const u8 {
+        tc.setCommandLineArgs([][]const u8{
             "first arg",
             "'a' 'b' \\",
             "bare",
test/compile_errors.zig
@@ -1,7 +1,8 @@
 const tests = @import("tests.zig");
 
 pub fn addCases(cases: &tests.CompileErrorContext) void {
-    cases.add("invalid deref on switch target",
+    cases.add(
+        "invalid deref on switch target",
         \\comptime {
         \\    var tile = Tile.Empty;
         \\    switch (tile.*) {
@@ -14,15 +15,19 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    Filled,
         \\};
     ,
-        ".tmp_source.zig:3:17: error: invalid deref on switch target");
+        ".tmp_source.zig:3:17: error: invalid deref on switch target",
+    );
 
-    cases.add("invalid field access in comptime",
+    cases.add(
+        "invalid field access in comptime",
         \\comptime { var x = doesnt_exist.whatever; }
     ,
-        ".tmp_source.zig:1:20: error: use of undeclared identifier 'doesnt_exist'");
+        ".tmp_source.zig:1:20: error: use of undeclared identifier 'doesnt_exist'",
+    );
 
-    cases.add("suspend inside suspend block",
-        \\const std = @import("std");
+    cases.add(
+        "suspend inside suspend block",
+        \\const std = @import("std",);
         \\
         \\export fn entry() void {
         \\    var buf: [500]u8 = undefined;
@@ -39,27 +44,32 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
     ,
         ".tmp_source.zig:12:9: error: cannot suspend inside suspend block",
-        ".tmp_source.zig:11:5: note: other suspend block here");
+        ".tmp_source.zig:11:5: note: other suspend block here",
+    );
 
-    cases.add("assign inline fn to non-comptime var",
+    cases.add(
+        "assign inline fn to non-comptime var",
         \\export fn entry() void {
         \\    var a = b;
         \\}
         \\inline fn b() void { }
     ,
         ".tmp_source.zig:2:5: error: functions marked inline must be stored in const or comptime var",
-        ".tmp_source.zig:4:8: note: declared here");
+        ".tmp_source.zig:4:8: note: declared here",
+    );
 
-    cases.add("wrong type passed to @panic",
+    cases.add(
+        "wrong type passed to @panic",
         \\export fn entry() void {
         \\    var e = error.Foo;
         \\    @panic(e);
         \\}
     ,
-        ".tmp_source.zig:3:12: error: expected type '[]const u8', found 'error{Foo}'");
+        ".tmp_source.zig:3:12: error: expected type '[]const u8', found 'error{Foo}'",
+    );
 
-
-    cases.add("@tagName used on union with no associated enum tag",
+    cases.add(
+        "@tagName used on union with no associated enum tag",
         \\const FloatInt = extern union {
         \\    Float: f32,
         \\    Int: i32,
@@ -70,10 +80,12 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
     ,
         ".tmp_source.zig:7:19: error: union has no associated enum",
-        ".tmp_source.zig:1:18: note: declared here");
+        ".tmp_source.zig:1:18: note: declared here",
+    );
 
-    cases.add("returning error from void async function",
-        \\const std = @import("std");
+    cases.add(
+        "returning error from void async function",
+        \\const std = @import("std",);
         \\export fn entry() void {
         \\    const p = async<std.debug.global_allocator> amain() catch unreachable;
         \\}
@@ -81,31 +93,39 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    return error.ShouldBeCompileError;
         \\}
     ,
-        ".tmp_source.zig:6:17: error: expected type 'void', found 'error{ShouldBeCompileError}'");
+        ".tmp_source.zig:6:17: error: expected type 'void', found 'error{ShouldBeCompileError}'",
+    );
 
-    cases.add("var not allowed in structs",
+    cases.add(
+        "var not allowed in structs",
         \\export fn entry() void {
         \\   var s = (struct{v: var}){.v=i32(10)};
         \\}
     ,
-        ".tmp_source.zig:2:23: error: invalid token: 'var'");
+        ".tmp_source.zig:2:23: error: invalid token: 'var'",
+    );
 
-    cases.add("@ptrCast discards const qualifier",
+    cases.add(
+        "@ptrCast discards const qualifier",
         \\export fn entry() void {
         \\    const x: i32 = 1234;
         \\    const y = @ptrCast(&i32, &x);
         \\}
     ,
-        ".tmp_source.zig:3:15: error: cast discards const qualifier");
+        ".tmp_source.zig:3:15: error: cast discards const qualifier",
+    );
 
-    cases.add("comptime slice of undefined pointer non-zero len",
+    cases.add(
+        "comptime slice of undefined pointer non-zero len",
         \\export fn entry() void {
         \\    const slice = (&i32)(undefined)[0..1];
         \\}
     ,
-        ".tmp_source.zig:2:36: error: non-zero length slice of undefined pointer");
+        ".tmp_source.zig:2:36: error: non-zero length slice of undefined pointer",
+    );
 
-    cases.add("type checking function pointers",
+    cases.add(
+        "type checking function pointers",
         \\fn a(b: fn (&const u8) void) void {
         \\    b('a');
         \\}
@@ -116,9 +136,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    a(c);
         \\}
     ,
-        ".tmp_source.zig:8:7: error: expected type 'fn(&const u8) void', found 'fn(u8) void'");
+        ".tmp_source.zig:8:7: error: expected type 'fn(&const u8) void', found 'fn(u8) void'",
+    );
 
-    cases.add("no else prong on switch on global error set",
+    cases.add(
+        "no else prong on switch on global error set",
         \\export fn entry() void {
         \\    foo(error.A);
         \\}
@@ -128,18 +150,22 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    }
         \\}
     ,
-        ".tmp_source.zig:5:5: error: else prong required when switching on type 'error'");
+        ".tmp_source.zig:5:5: error: else prong required when switching on type 'error'",
+    );
 
-    cases.add("inferred error set with no returned error",
+    cases.add(
+        "inferred error set with no returned error",
         \\export fn entry() void {
         \\    foo() catch unreachable;
         \\}
         \\fn foo() !void {
         \\}
     ,
-        ".tmp_source.zig:4:11: error: function with inferred error set must return at least one possible error");
+        ".tmp_source.zig:4:11: error: function with inferred error set must return at least one possible error",
+    );
 
-    cases.add("error not handled in switch",
+    cases.add(
+        "error not handled in switch",
         \\export fn entry() void {
         \\    foo(452) catch |err| switch (err) {
         \\        error.Foo => {},
@@ -155,9 +181,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
     ,
         ".tmp_source.zig:2:26: error: error.Baz not handled in switch",
-        ".tmp_source.zig:2:26: error: error.Bar not handled in switch");
+        ".tmp_source.zig:2:26: error: error.Bar not handled in switch",
+    );
 
-    cases.add("duplicate error in switch",
+    cases.add(
+        "duplicate error in switch",
         \\export fn entry() void {
         \\    foo(452) catch |err| switch (err) {
         \\        error.Foo => {},
@@ -175,9 +203,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
     ,
         ".tmp_source.zig:5:14: error: duplicate switch value: '@typeOf(foo).ReturnType.ErrorSet.Foo'",
-        ".tmp_source.zig:3:14: note: other value is here");
+        ".tmp_source.zig:3:14: note: other value is here",
+    );
 
-    cases.add("range operator in switch used on error set",
+    cases.add(
+        "range operator in switch used on error set",
         \\export fn entry() void {
         \\    try foo(452) catch |err| switch (err) {
         \\        error.A ... error.B => {},
@@ -192,31 +222,39 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    }
         \\}
     ,
-        ".tmp_source.zig:3:17: error: operator not allowed for errors");
+        ".tmp_source.zig:3:17: error: operator not allowed for errors",
+    );
 
-    cases.add("inferring error set of function pointer",
+    cases.add(
+        "inferring error set of function pointer",
         \\comptime {
         \\    const z: ?fn()!void = null;
         \\}
     ,
-        ".tmp_source.zig:2:15: error: inferring error set of return type valid only for function definitions");
+        ".tmp_source.zig:2:15: error: inferring error set of return type valid only for function definitions",
+    );
 
-    cases.add("access non-existent member of error set",
+    cases.add(
+        "access non-existent member of error set",
         \\const Foo = error{A};
         \\comptime {
         \\    const z = Foo.Bar;
         \\}
     ,
-        ".tmp_source.zig:3:18: error: no error named 'Bar' in 'Foo'");
+        ".tmp_source.zig:3:18: error: no error named 'Bar' in 'Foo'",
+    );
 
-    cases.add("error union operator with non error set LHS",
+    cases.add(
+        "error union operator with non error set LHS",
         \\comptime {
         \\    const z = i32!i32;
         \\}
     ,
-        ".tmp_source.zig:2:15: error: expected error set type, found type 'i32'");
+        ".tmp_source.zig:2:15: error: expected error set type, found type 'i32'",
+    );
 
-    cases.add("error equality but sets have no common members",
+    cases.add(
+        "error equality but sets have no common members",
         \\const Set1 = error{A, C};
         \\const Set2 = error{B, D};
         \\export fn entry() void {
@@ -228,16 +266,20 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    }
         \\}
     ,
-        ".tmp_source.zig:7:11: error: error sets 'Set1' and 'Set2' have no common errors");
+        ".tmp_source.zig:7:11: error: error sets 'Set1' and 'Set2' have no common errors",
+    );
 
-    cases.add("only equality binary operator allowed for error sets",
+    cases.add(
+        "only equality binary operator allowed for error sets",
         \\comptime {
         \\    const z = error.A > error.B;
         \\}
     ,
-        ".tmp_source.zig:2:23: error: operator not allowed for errors");
+        ".tmp_source.zig:2:23: error: operator not allowed for errors",
+    );
 
-    cases.add("explicit error set cast known at comptime violates error sets",
+    cases.add(
+        "explicit error set cast known at comptime violates error sets",
         \\const Set1 = error {A, B};
         \\const Set2 = error {A, C};
         \\comptime {
@@ -245,9 +287,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    var y = Set2(x);
         \\}
     ,
-        ".tmp_source.zig:5:17: error: error.B not a member of error set 'Set2'");
+        ".tmp_source.zig:5:17: error: error.B not a member of error set 'Set2'",
+    );
 
-    cases.add("cast error union of global error set to error union of smaller error set",
+    cases.add(
+        "cast error union of global error set to error union of smaller error set",
         \\const SmallErrorSet = error{A};
         \\export fn entry() void {
         \\    var x: SmallErrorSet!i32 = foo();
@@ -257,9 +301,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
     ,
         ".tmp_source.zig:3:35: error: expected 'SmallErrorSet!i32', found 'error!i32'",
-        ".tmp_source.zig:3:35: note: unable to cast global error set into smaller set");
+        ".tmp_source.zig:3:35: note: unable to cast global error set into smaller set",
+    );
 
-    cases.add("cast global error set to error set",
+    cases.add(
+        "cast global error set to error set",
         \\const SmallErrorSet = error{A};
         \\export fn entry() void {
         \\    var x: SmallErrorSet = foo();
@@ -269,9 +315,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
     ,
         ".tmp_source.zig:3:31: error: expected 'SmallErrorSet', found 'error'",
-        ".tmp_source.zig:3:31: note: unable to cast global error set into smaller set");
+        ".tmp_source.zig:3:31: note: unable to cast global error set into smaller set",
+    );
 
-    cases.add("recursive inferred error set",
+    cases.add(
+        "recursive inferred error set",
         \\export fn entry() void {
         \\    foo() catch unreachable;
         \\}
@@ -279,9 +327,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    try foo();
         \\}
     ,
-        ".tmp_source.zig:5:5: error: cannot resolve inferred error set '@typeOf(foo).ReturnType.ErrorSet': function 'foo' not fully analyzed yet");
+        ".tmp_source.zig:5:5: error: cannot resolve inferred error set '@typeOf(foo).ReturnType.ErrorSet': function 'foo' not fully analyzed yet",
+    );
 
-    cases.add("implicit cast of error set not a subset",
+    cases.add(
+        "implicit cast of error set not a subset",
         \\const Set1 = error{A, B};
         \\const Set2 = error{A, C};
         \\export fn entry() void {
@@ -292,18 +342,22 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
     ,
         ".tmp_source.zig:7:19: error: expected 'Set2', found 'Set1'",
-        ".tmp_source.zig:1:23: note: 'error.B' not a member of destination error set");
+        ".tmp_source.zig:1:23: note: 'error.B' not a member of destination error set",
+    );
 
-    cases.add("int to err global invalid number",
+    cases.add(
+        "int to err global invalid number",
         \\const Set1 = error{A, B};
         \\comptime {
         \\    var x: usize = 3;
         \\    var y = error(x);
         \\}
     ,
-        ".tmp_source.zig:4:18: error: integer value 3 represents no error");
+        ".tmp_source.zig:4:18: error: integer value 3 represents no error",
+    );
 
-    cases.add("int to err non global invalid number",
+    cases.add(
+        "int to err non global invalid number",
         \\const Set1 = error{A, B};
         \\const Set2 = error{A, C};
         \\comptime {
@@ -311,16 +365,20 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    var y = Set2(x);
         \\}
     ,
-        ".tmp_source.zig:5:17: error: integer value 2 represents no error in 'Set2'");
+        ".tmp_source.zig:5:17: error: integer value 2 represents no error in 'Set2'",
+    );
 
-    cases.add("@memberCount of error",
+    cases.add(
+        "@memberCount of error",
         \\comptime {
         \\    _ = @memberCount(error);
         \\}
     ,
-        ".tmp_source.zig:2:9: error: global error set member count not available at comptime");
+        ".tmp_source.zig:2:9: error: global error set member count not available at comptime",
+    );
 
-    cases.add("duplicate error value in error set",
+    cases.add(
+        "duplicate error value in error set",
         \\const Foo = error {
         \\    Bar,
         \\    Bar,
@@ -330,22 +388,30 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
     ,
         ".tmp_source.zig:3:5: error: duplicate error: 'Bar'",
-        ".tmp_source.zig:2:5: note: other error here");
+        ".tmp_source.zig:2:5: note: other error here",
+    );
 
-    cases.add("cast negative integer literal to usize",
+    cases.add(
+        "cast negative integer literal to usize",
         \\export fn entry() void {
         \\    const x = usize(-10);
         \\}
-    , ".tmp_source.zig:2:21: error: cannot cast negative value -10 to unsigned integer type 'usize'");
+    ,
+        ".tmp_source.zig:2:21: error: cannot cast negative value -10 to unsigned integer type 'usize'",
+    );
 
-    cases.add("use invalid number literal as array index",
+    cases.add(
+        "use invalid number literal as array index",
         \\var v = 25;
         \\export fn entry() void {
         \\    var arr: [v]u8 = undefined;
         \\}
-    , ".tmp_source.zig:1:1: error: unable to infer variable type");
+    ,
+        ".tmp_source.zig:1:1: error: unable to infer variable type",
+    );
 
-    cases.add("duplicate struct field",
+    cases.add(
+        "duplicate struct field",
         \\const Foo = struct {
         \\    Bar: i32,
         \\    Bar: usize,
@@ -355,9 +421,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
     ,
         ".tmp_source.zig:3:5: error: duplicate struct field: 'Bar'",
-        ".tmp_source.zig:2:5: note: other field here");
+        ".tmp_source.zig:2:5: note: other field here",
+    );
 
-    cases.add("duplicate union field",
+    cases.add(
+        "duplicate union field",
         \\const Foo = union {
         \\    Bar: i32,
         \\    Bar: usize,
@@ -367,9 +435,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
     ,
         ".tmp_source.zig:3:5: error: duplicate union field: 'Bar'",
-        ".tmp_source.zig:2:5: note: other field here");
+        ".tmp_source.zig:2:5: note: other field here",
+    );
 
-    cases.add("duplicate enum field",
+    cases.add(
+        "duplicate enum field",
         \\const Foo = enum {
         \\    Bar,
         \\    Bar,
@@ -380,77 +450,108 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
     ,
         ".tmp_source.zig:3:5: error: duplicate enum field: 'Bar'",
-        ".tmp_source.zig:2:5: note: other field here");
+        ".tmp_source.zig:2:5: note: other field here",
+    );
 
-    cases.add("calling function with naked calling convention",
+    cases.add(
+        "calling function with naked calling convention",
         \\export fn entry() void {
         \\    foo();
         \\}
         \\nakedcc fn foo() void { }
     ,
         ".tmp_source.zig:2:5: error: unable to call function with naked calling convention",
-        ".tmp_source.zig:4:9: note: declared here");
+        ".tmp_source.zig:4:9: note: declared here",
+    );
 
-    cases.add("function with invalid return type",
+    cases.add(
+        "function with invalid return type",
         \\export fn foo() boid {}
-    , ".tmp_source.zig:1:17: error: use of undeclared identifier 'boid'");
+    ,
+        ".tmp_source.zig:1:17: error: use of undeclared identifier 'boid'",
+    );
 
-    cases.add("function with non-extern non-packed enum parameter",
+    cases.add(
+        "function with non-extern non-packed enum parameter",
         \\const Foo = enum { A, B, C };
         \\export fn entry(foo: Foo) void { }
-    , ".tmp_source.zig:2:22: error: parameter of type 'Foo' not allowed in function with calling convention 'ccc'");
+    ,
+        ".tmp_source.zig:2:22: error: parameter of type 'Foo' not allowed in function with calling convention 'ccc'",
+    );
 
-    cases.add("function with non-extern non-packed struct parameter",
+    cases.add(
+        "function with non-extern non-packed struct parameter",
         \\const Foo = struct {
         \\    A: i32,
         \\    B: f32,
         \\    C: bool,
         \\};
         \\export fn entry(foo: Foo) void { }
-    , ".tmp_source.zig:6:22: error: parameter of type 'Foo' not allowed in function with calling convention 'ccc'");
+    ,
+        ".tmp_source.zig:6:22: error: parameter of type 'Foo' not allowed in function with calling convention 'ccc'",
+    );
 
-    cases.add("function with non-extern non-packed union parameter",
+    cases.add(
+        "function with non-extern non-packed union parameter",
         \\const Foo = union {
         \\    A: i32,
         \\    B: f32,
         \\    C: bool,
         \\};
         \\export fn entry(foo: Foo) void { }
-    , ".tmp_source.zig:6:22: error: parameter of type 'Foo' not allowed in function with calling convention 'ccc'");
+    ,
+        ".tmp_source.zig:6:22: error: parameter of type 'Foo' not allowed in function with calling convention 'ccc'",
+    );
 
-    cases.add("switch on enum with 1 field with no prongs",
+    cases.add(
+        "switch on enum with 1 field with no prongs",
         \\const Foo = enum { M };
         \\
         \\export fn entry() void {
         \\    var f = Foo.M;
         \\    switch (f) {}
         \\}
-    , ".tmp_source.zig:5:5: error: enumeration value 'Foo.M' not handled in switch");
+    ,
+        ".tmp_source.zig:5:5: error: enumeration value 'Foo.M' not handled in switch",
+    );
 
-    cases.add("shift by negative comptime integer",
+    cases.add(
+        "shift by negative comptime integer",
         \\comptime {
         \\    var a = 1 >> -1;
         \\}
-    , ".tmp_source.zig:2:18: error: shift by negative value -1");
+    ,
+        ".tmp_source.zig:2:18: error: shift by negative value -1",
+    );
 
-    cases.add("@panic called at compile time",
+    cases.add(
+        "@panic called at compile time",
         \\export fn entry() void {
         \\    comptime {
-        \\        @panic("aoeu");
+        \\        @panic("aoeu",);
         \\    }
         \\}
-    , ".tmp_source.zig:3:9: error: encountered @panic at compile-time");
+    ,
+        ".tmp_source.zig:3:9: error: encountered @panic at compile-time",
+    );
 
-    cases.add("wrong return type for main",
+    cases.add(
+        "wrong return type for main",
         \\pub fn main() f32 { }
-    , "error: expected return type of main to be 'u8', 'noreturn', 'void', or '!void'");
+    ,
+        "error: expected return type of main to be 'u8', 'noreturn', 'void', or '!void'",
+    );
 
-    cases.add("double ?? on main return value",
+    cases.add(
+        "double ?? on main return value",
         \\pub fn main() ??void {
         \\}
-    , "error: expected return type of main to be 'u8', 'noreturn', 'void', or '!void'");
+    ,
+        "error: expected return type of main to be 'u8', 'noreturn', 'void', or '!void'",
+    );
 
-    cases.add("bad identifier in function with struct defined inside function which references local const",
+    cases.add(
+        "bad identifier in function with struct defined inside function which references local const",
         \\export fn entry() void {
         \\    const BlockKind = u32;
         \\
@@ -460,9 +561,12 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\
         \\    bogus;
         \\}
-    , ".tmp_source.zig:8:5: error: use of undeclared identifier 'bogus'");
+    ,
+        ".tmp_source.zig:8:5: error: use of undeclared identifier 'bogus'",
+    );
 
-    cases.add("labeled break not found",
+    cases.add(
+        "labeled break not found",
         \\export fn entry() void {
         \\    blah: while (true) {
         \\        while (true) {
@@ -470,9 +574,12 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\        }
         \\    }
         \\}
-    , ".tmp_source.zig:4:13: error: label not found: 'outer'");
+    ,
+        ".tmp_source.zig:4:13: error: label not found: 'outer'",
+    );
 
-    cases.add("labeled continue not found",
+    cases.add(
+        "labeled continue not found",
         \\export fn entry() void {
         \\    var i: usize = 0;
         \\    blah: while (i < 10) : (i += 1) {
@@ -481,9 +588,12 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\        }
         \\    }
         \\}
-    , ".tmp_source.zig:5:13: error: labeled loop not found: 'outer'");
+    ,
+        ".tmp_source.zig:5:13: error: labeled loop not found: 'outer'",
+    );
 
-    cases.add("attempt to use 0 bit type in extern fn",
+    cases.add(
+        "attempt to use 0 bit type in extern fn",
         \\extern fn foo(ptr: extern fn(&void) void) void;
         \\
         \\export fn entry() void {
@@ -491,390 +601,541 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
         \\
         \\extern fn bar(x: &void) void { }
-    , ".tmp_source.zig:7:18: error: parameter of type '&void' has 0 bits; not allowed in function with calling convention 'ccc'");
+    ,
+        ".tmp_source.zig:7:18: error: parameter of type '&void' has 0 bits; not allowed in function with calling convention 'ccc'",
+    );
 
-    cases.add("implicit semicolon - block statement",
+    cases.add(
+        "implicit semicolon - block statement",
         \\export fn entry() void {
         \\    {}
         \\    var good = {};
         \\    ({})
         \\    var bad = {};
         \\}
-    , ".tmp_source.zig:5:5: error: expected token ';', found 'var'");
+    ,
+        ".tmp_source.zig:5:5: error: expected token ';', found 'var'",
+    );
 
-    cases.add("implicit semicolon - block expr",
+    cases.add(
+        "implicit semicolon - block expr",
         \\export fn entry() void {
         \\    _ = {};
         \\    var good = {};
         \\    _ = {}
         \\    var bad = {};
         \\}
-    , ".tmp_source.zig:5:5: error: expected token ';', found 'var'");
+    ,
+        ".tmp_source.zig:5:5: error: expected token ';', found 'var'",
+    );
 
-    cases.add("implicit semicolon - comptime statement",
+    cases.add(
+        "implicit semicolon - comptime statement",
         \\export fn entry() void {
         \\    comptime {}
         \\    var good = {};
         \\    comptime ({})
         \\    var bad = {};
         \\}
-    , ".tmp_source.zig:5:5: error: expected token ';', found 'var'");
+    ,
+        ".tmp_source.zig:5:5: error: expected token ';', found 'var'",
+    );
 
-    cases.add("implicit semicolon - comptime expression",
+    cases.add(
+        "implicit semicolon - comptime expression",
         \\export fn entry() void {
         \\    _ = comptime {};
         \\    var good = {};
         \\    _ = comptime {}
         \\    var bad = {};
         \\}
-    , ".tmp_source.zig:5:5: error: expected token ';', found 'var'");
+    ,
+        ".tmp_source.zig:5:5: error: expected token ';', found 'var'",
+    );
 
-    cases.add("implicit semicolon - defer",
+    cases.add(
+        "implicit semicolon - defer",
         \\export fn entry() void {
         \\    defer {}
         \\    var good = {};
         \\    defer ({})
         \\    var bad = {};
         \\}
-    , ".tmp_source.zig:5:5: error: expected token ';', found 'var'");
+    ,
+        ".tmp_source.zig:5:5: error: expected token ';', found 'var'",
+    );
 
-    cases.add("implicit semicolon - if statement",
+    cases.add(
+        "implicit semicolon - if statement",
         \\export fn entry() void {
         \\    if(true) {}
         \\    var good = {};
         \\    if(true) ({})
         \\    var bad = {};
         \\}
-    , ".tmp_source.zig:5:5: error: expected token ';', found 'var'");
+    ,
+        ".tmp_source.zig:5:5: error: expected token ';', found 'var'",
+    );
 
-    cases.add("implicit semicolon - if expression",
+    cases.add(
+        "implicit semicolon - if expression",
         \\export fn entry() void {
         \\    _ = if(true) {};
         \\    var good = {};
         \\    _ = if(true) {}
         \\    var bad = {};
         \\}
-    , ".tmp_source.zig:5:5: error: expected token ';', found 'var'");
+    ,
+        ".tmp_source.zig:5:5: error: expected token ';', found 'var'",
+    );
 
-    cases.add("implicit semicolon - if-else statement",
+    cases.add(
+        "implicit semicolon - if-else statement",
         \\export fn entry() void {
         \\    if(true) {} else {}
         \\    var good = {};
         \\    if(true) ({}) else ({})
         \\    var bad = {};
         \\}
-    , ".tmp_source.zig:5:5: error: expected token ';', found 'var'");
+    ,
+        ".tmp_source.zig:5:5: error: expected token ';', found 'var'",
+    );
 
-    cases.add("implicit semicolon - if-else expression",
+    cases.add(
+        "implicit semicolon - if-else expression",
         \\export fn entry() void {
         \\    _ = if(true) {} else {};
         \\    var good = {};
         \\    _ = if(true) {} else {}
         \\    var bad = {};
         \\}
-    , ".tmp_source.zig:5:5: error: expected token ';', found 'var'");
+    ,
+        ".tmp_source.zig:5:5: error: expected token ';', found 'var'",
+    );
 
-    cases.add("implicit semicolon - if-else-if statement",
+    cases.add(
+        "implicit semicolon - if-else-if statement",
         \\export fn entry() void {
         \\    if(true) {} else if(true) {}
         \\    var good = {};
         \\    if(true) ({}) else if(true) ({})
         \\    var bad = {};
         \\}
-    , ".tmp_source.zig:5:5: error: expected token ';', found 'var'");
+    ,
+        ".tmp_source.zig:5:5: error: expected token ';', found 'var'",
+    );
 
-    cases.add("implicit semicolon - if-else-if expression",
+    cases.add(
+        "implicit semicolon - if-else-if expression",
         \\export fn entry() void {
         \\    _ = if(true) {} else if(true) {};
         \\    var good = {};
         \\    _ = if(true) {} else if(true) {}
         \\    var bad = {};
         \\}
-    , ".tmp_source.zig:5:5: error: expected token ';', found 'var'");
+    ,
+        ".tmp_source.zig:5:5: error: expected token ';', found 'var'",
+    );
 
-    cases.add("implicit semicolon - if-else-if-else statement",
+    cases.add(
+        "implicit semicolon - if-else-if-else statement",
         \\export fn entry() void {
         \\    if(true) {} else if(true) {} else {}
         \\    var good = {};
         \\    if(true) ({}) else if(true) ({}) else ({})
         \\    var bad = {};
         \\}
-    , ".tmp_source.zig:5:5: error: expected token ';', found 'var'");
+    ,
+        ".tmp_source.zig:5:5: error: expected token ';', found 'var'",
+    );
 
-    cases.add("implicit semicolon - if-else-if-else expression",
+    cases.add(
+        "implicit semicolon - if-else-if-else expression",
         \\export fn entry() void {
         \\    _ = if(true) {} else if(true) {} else {};
         \\    var good = {};
         \\    _ = if(true) {} else if(true) {} else {}
         \\    var bad = {};
         \\}
-    , ".tmp_source.zig:5:5: error: expected token ';', found 'var'");
+    ,
+        ".tmp_source.zig:5:5: error: expected token ';', found 'var'",
+    );
 
-    cases.add("implicit semicolon - test statement",
+    cases.add(
+        "implicit semicolon - test statement",
         \\export fn entry() void {
         \\    if (foo()) |_| {}
         \\    var good = {};
         \\    if (foo()) |_| ({})
         \\    var bad = {};
         \\}
-    , ".tmp_source.zig:5:5: error: expected token ';', found 'var'");
+    ,
+        ".tmp_source.zig:5:5: error: expected token ';', found 'var'",
+    );
 
-    cases.add("implicit semicolon - test expression",
+    cases.add(
+        "implicit semicolon - test expression",
         \\export fn entry() void {
         \\    _ = if (foo()) |_| {};
         \\    var good = {};
         \\    _ = if (foo()) |_| {}
         \\    var bad = {};
         \\}
-    , ".tmp_source.zig:5:5: error: expected token ';', found 'var'");
+    ,
+        ".tmp_source.zig:5:5: error: expected token ';', found 'var'",
+    );
 
-    cases.add("implicit semicolon - while statement",
+    cases.add(
+        "implicit semicolon - while statement",
         \\export fn entry() void {
         \\    while(true) {}
         \\    var good = {};
         \\    while(true) ({})
         \\    var bad = {};
         \\}
-    , ".tmp_source.zig:5:5: error: expected token ';', found 'var'");
+    ,
+        ".tmp_source.zig:5:5: error: expected token ';', found 'var'",
+    );
 
-    cases.add("implicit semicolon - while expression",
+    cases.add(
+        "implicit semicolon - while expression",
         \\export fn entry() void {
         \\    _ = while(true) {};
         \\    var good = {};
         \\    _ = while(true) {}
         \\    var bad = {};
         \\}
-    , ".tmp_source.zig:5:5: error: expected token ';', found 'var'");
+    ,
+        ".tmp_source.zig:5:5: error: expected token ';', found 'var'",
+    );
 
-    cases.add("implicit semicolon - while-continue statement",
+    cases.add(
+        "implicit semicolon - while-continue statement",
         \\export fn entry() void {
         \\    while(true):({}) {}
         \\    var good = {};
         \\    while(true):({}) ({})
         \\    var bad = {};
         \\}
-    , ".tmp_source.zig:5:5: error: expected token ';', found 'var'");
+    ,
+        ".tmp_source.zig:5:5: error: expected token ';', found 'var'",
+    );
 
-    cases.add("implicit semicolon - while-continue expression",
+    cases.add(
+        "implicit semicolon - while-continue expression",
         \\export fn entry() void {
         \\    _ = while(true):({}) {};
         \\    var good = {};
         \\    _ = while(true):({}) {}
         \\    var bad = {};
         \\}
-    , ".tmp_source.zig:5:5: error: expected token ';', found 'var'");
+    ,
+        ".tmp_source.zig:5:5: error: expected token ';', found 'var'",
+    );
 
-    cases.add("implicit semicolon - for statement",
+    cases.add(
+        "implicit semicolon - for statement",
         \\export fn entry() void {
         \\    for(foo()) {}
         \\    var good = {};
         \\    for(foo()) ({})
         \\    var bad = {};
         \\}
-    , ".tmp_source.zig:5:5: error: expected token ';', found 'var'");
+    ,
+        ".tmp_source.zig:5:5: error: expected token ';', found 'var'",
+    );
 
-    cases.add("implicit semicolon - for expression",
+    cases.add(
+        "implicit semicolon - for expression",
         \\export fn entry() void {
         \\    _ = for(foo()) {};
         \\    var good = {};
         \\    _ = for(foo()) {}
         \\    var bad = {};
         \\}
-    , ".tmp_source.zig:5:5: error: expected token ';', found 'var'");
+    ,
+        ".tmp_source.zig:5:5: error: expected token ';', found 'var'",
+    );
 
-    cases.add("multiple function definitions",
+    cases.add(
+        "multiple function definitions",
         \\fn a() void {}
         \\fn a() void {}
         \\export fn entry() void { a(); }
-    , ".tmp_source.zig:2:1: error: redefinition of 'a'");
+    ,
+        ".tmp_source.zig:2:1: error: redefinition of 'a'",
+    );
 
-    cases.add("unreachable with return",
+    cases.add(
+        "unreachable with return",
         \\fn a() noreturn {return;}
         \\export fn entry() void { a(); }
-    , ".tmp_source.zig:1:18: error: expected type 'noreturn', found 'void'");
+    ,
+        ".tmp_source.zig:1:18: error: expected type 'noreturn', found 'void'",
+    );
 
-    cases.add("control reaches end of non-void function",
+    cases.add(
+        "control reaches end of non-void function",
         \\fn a() i32 {}
         \\export fn entry() void { _ = a(); }
-    , ".tmp_source.zig:1:12: error: expected type 'i32', found 'void'");
+    ,
+        ".tmp_source.zig:1:12: error: expected type 'i32', found 'void'",
+    );
 
-    cases.add("undefined function call",
+    cases.add(
+        "undefined function call",
         \\export fn a() void {
         \\    b();
         \\}
-    , ".tmp_source.zig:2:5: error: use of undeclared identifier 'b'");
+    ,
+        ".tmp_source.zig:2:5: error: use of undeclared identifier 'b'",
+    );
 
-    cases.add("wrong number of arguments",
+    cases.add(
+        "wrong number of arguments",
         \\export fn a() void {
         \\    b(1);
         \\}
         \\fn b(a: i32, b: i32, c: i32) void { }
-    , ".tmp_source.zig:2:6: error: expected 3 arguments, found 1");
+    ,
+        ".tmp_source.zig:2:6: error: expected 3 arguments, found 1",
+    );
 
-    cases.add("invalid type",
+    cases.add(
+        "invalid type",
         \\fn a() bogus {}
         \\export fn entry() void { _ = a(); }
-    , ".tmp_source.zig:1:8: error: use of undeclared identifier 'bogus'");
+    ,
+        ".tmp_source.zig:1:8: error: use of undeclared identifier 'bogus'",
+    );
 
-    cases.add("pointer to noreturn",
+    cases.add(
+        "pointer to noreturn",
         \\fn a() &noreturn {}
         \\export fn entry() void { _ = a(); }
-    , ".tmp_source.zig:1:9: error: pointer to noreturn not allowed");
+    ,
+        ".tmp_source.zig:1:9: error: pointer to noreturn not allowed",
+    );
 
-    cases.add("unreachable code",
+    cases.add(
+        "unreachable code",
         \\export fn a() void {
         \\    return;
         \\    b();
         \\}
         \\
         \\fn b() void {}
-    , ".tmp_source.zig:3:5: error: unreachable code");
+    ,
+        ".tmp_source.zig:3:5: error: unreachable code",
+    );
 
-    cases.add("bad import",
-        \\const bogus = @import("bogus-does-not-exist.zig");
+    cases.add(
+        "bad import",
+        \\const bogus = @import("bogus-does-not-exist.zig",);
         \\export fn entry() void { bogus.bogo(); }
-    , ".tmp_source.zig:1:15: error: unable to find 'bogus-does-not-exist.zig'");
+    ,
+        ".tmp_source.zig:1:15: error: unable to find 'bogus-does-not-exist.zig'",
+    );
 
-    cases.add("undeclared identifier",
+    cases.add(
+        "undeclared identifier",
         \\export fn a() void {
         \\    return
         \\    b +
         \\    c;
         \\}
     ,
-            ".tmp_source.zig:3:5: error: use of undeclared identifier 'b'",
-            ".tmp_source.zig:4:5: error: use of undeclared identifier 'c'");
+        ".tmp_source.zig:3:5: error: use of undeclared identifier 'b'",
+        ".tmp_source.zig:4:5: error: use of undeclared identifier 'c'",
+    );
 
-    cases.add("parameter redeclaration",
+    cases.add(
+        "parameter redeclaration",
         \\fn f(a : i32, a : i32) void {
         \\}
         \\export fn entry() void { f(1, 2); }
-    , ".tmp_source.zig:1:15: error: redeclaration of variable 'a'");
+    ,
+        ".tmp_source.zig:1:15: error: redeclaration of variable 'a'",
+    );
 
-    cases.add("local variable redeclaration",
+    cases.add(
+        "local variable redeclaration",
         \\export fn f() void {
         \\    const a : i32 = 0;
         \\    const a = 0;
         \\}
-    , ".tmp_source.zig:3:5: error: redeclaration of variable 'a'");
+    ,
+        ".tmp_source.zig:3:5: error: redeclaration of variable 'a'",
+    );
 
-    cases.add("local variable redeclares parameter",
+    cases.add(
+        "local variable redeclares parameter",
         \\fn f(a : i32) void {
         \\    const a = 0;
         \\}
         \\export fn entry() void { f(1); }
-    , ".tmp_source.zig:2:5: error: redeclaration of variable 'a'");
+    ,
+        ".tmp_source.zig:2:5: error: redeclaration of variable 'a'",
+    );
 
-    cases.add("variable has wrong type",
+    cases.add(
+        "variable has wrong type",
         \\export fn f() i32 {
         \\    const a = c"a";
         \\    return a;
         \\}
-    , ".tmp_source.zig:3:12: error: expected type 'i32', found '&const u8'");
+    ,
+        ".tmp_source.zig:3:12: error: expected type 'i32', found '&const u8'",
+    );
 
-    cases.add("if condition is bool, not int",
+    cases.add(
+        "if condition is bool, not int",
         \\export fn f() void {
         \\    if (0) {}
         \\}
-    , ".tmp_source.zig:2:9: error: integer value 0 cannot be implicitly casted to type 'bool'");
+    ,
+        ".tmp_source.zig:2:9: error: integer value 0 cannot be implicitly casted to type 'bool'",
+    );
 
-    cases.add("assign unreachable",
+    cases.add(
+        "assign unreachable",
         \\export fn f() void {
         \\    const a = return;
         \\}
-    , ".tmp_source.zig:2:5: error: unreachable code");
+    ,
+        ".tmp_source.zig:2:5: error: unreachable code",
+    );
 
-    cases.add("unreachable variable",
+    cases.add(
+        "unreachable variable",
         \\export fn f() void {
         \\    const a: noreturn = {};
         \\}
-    , ".tmp_source.zig:2:14: error: variable of type 'noreturn' not allowed");
+    ,
+        ".tmp_source.zig:2:14: error: variable of type 'noreturn' not allowed",
+    );
 
-    cases.add("unreachable parameter",
+    cases.add(
+        "unreachable parameter",
         \\fn f(a: noreturn) void {}
         \\export fn entry() void { f(); }
-    , ".tmp_source.zig:1:9: error: parameter of type 'noreturn' not allowed");
+    ,
+        ".tmp_source.zig:1:9: error: parameter of type 'noreturn' not allowed",
+    );
 
-    cases.add("bad assignment target",
+    cases.add(
+        "bad assignment target",
         \\export fn f() void {
         \\    3 = 3;
         \\}
-    , ".tmp_source.zig:2:7: error: cannot assign to constant");
+    ,
+        ".tmp_source.zig:2:7: error: cannot assign to constant",
+    );
 
-    cases.add("assign to constant variable",
+    cases.add(
+        "assign to constant variable",
         \\export fn f() void {
         \\    const a = 3;
         \\    a = 4;
         \\}
-    , ".tmp_source.zig:3:7: error: cannot assign to constant");
+    ,
+        ".tmp_source.zig:3:7: error: cannot assign to constant",
+    );
 
-    cases.add("use of undeclared identifier",
+    cases.add(
+        "use of undeclared identifier",
         \\export fn f() void {
         \\    b = 3;
         \\}
-    , ".tmp_source.zig:2:5: error: use of undeclared identifier 'b'");
+    ,
+        ".tmp_source.zig:2:5: error: use of undeclared identifier 'b'",
+    );
 
-    cases.add("const is a statement, not an expression",
+    cases.add(
+        "const is a statement, not an expression",
         \\export fn f() void {
         \\    (const a = 0);
         \\}
-    , ".tmp_source.zig:2:6: error: invalid token: 'const'");
+    ,
+        ".tmp_source.zig:2:6: error: invalid token: 'const'",
+    );
 
-    cases.add("array access of undeclared identifier",
+    cases.add(
+        "array access of undeclared identifier",
         \\export fn f() void {
         \\    i[i] = i[i];
         \\}
-    , ".tmp_source.zig:2:5: error: use of undeclared identifier 'i'",
-                 ".tmp_source.zig:2:12: error: use of undeclared identifier 'i'");
+    ,
+        ".tmp_source.zig:2:5: error: use of undeclared identifier 'i'",
+        ".tmp_source.zig:2:12: error: use of undeclared identifier 'i'",
+    );
 
-    cases.add("array access of non array",
+    cases.add(
+        "array access of non array",
         \\export fn f() void {
         \\    var bad : bool = undefined;
         \\    bad[bad] = bad[bad];
         \\}
-    , ".tmp_source.zig:3:8: error: array access of non-array type 'bool'",
-                 ".tmp_source.zig:3:19: error: array access of non-array type 'bool'");
+    ,
+        ".tmp_source.zig:3:8: error: array access of non-array type 'bool'",
+        ".tmp_source.zig:3:19: error: array access of non-array type 'bool'",
+    );
 
-    cases.add("array access with non integer index",
+    cases.add(
+        "array access with non integer index",
         \\export fn f() void {
         \\    var array = "aoeu";
         \\    var bad = false;
         \\    array[bad] = array[bad];
         \\}
-    , ".tmp_source.zig:4:11: error: expected type 'usize', found 'bool'",
-                 ".tmp_source.zig:4:24: error: expected type 'usize', found 'bool'");
+    ,
+        ".tmp_source.zig:4:11: error: expected type 'usize', found 'bool'",
+        ".tmp_source.zig:4:24: error: expected type 'usize', found 'bool'",
+    );
 
-    cases.add("write to const global variable",
+    cases.add(
+        "write to const global variable",
         \\const x : i32 = 99;
         \\fn f() void {
         \\    x = 1;
         \\}
         \\export fn entry() void { f(); }
-    , ".tmp_source.zig:3:7: error: cannot assign to constant");
-
+    ,
+        ".tmp_source.zig:3:7: error: cannot assign to constant",
+    );
 
-    cases.add("missing else clause",
+    cases.add(
+        "missing else clause",
         \\fn f(b: bool) void {
         \\    const x : i32 = if (b) h: { break :h 1; };
         \\    const y = if (b) h: { break :h i32(1); };
         \\}
         \\export fn entry() void { f(true); }
-    , ".tmp_source.zig:2:42: error: integer value 1 cannot be implicitly casted to type 'void'",
-                 ".tmp_source.zig:3:15: error: incompatible types: 'i32' and 'void'");
+    ,
+        ".tmp_source.zig:2:42: error: integer value 1 cannot be implicitly casted to type 'void'",
+        ".tmp_source.zig:3:15: error: incompatible types: 'i32' and 'void'",
+    );
 
-    cases.add("direct struct loop",
+    cases.add(
+        "direct struct loop",
         \\const A = struct { a : A, };
         \\export fn entry() usize { return @sizeOf(A); }
-    , ".tmp_source.zig:1:11: error: struct 'A' contains itself");
+    ,
+        ".tmp_source.zig:1:11: error: struct 'A' contains itself",
+    );
 
-    cases.add("indirect struct loop",
+    cases.add(
+        "indirect struct loop",
         \\const A = struct { b : B, };
         \\const B = struct { c : C, };
         \\const C = struct { a : A, };
         \\export fn entry() usize { return @sizeOf(A); }
-    , ".tmp_source.zig:1:11: error: struct 'A' contains itself");
+    ,
+        ".tmp_source.zig:1:11: error: struct 'A' contains itself",
+    );
 
-    cases.add("invalid struct field",
+    cases.add(
+        "invalid struct field",
         \\const A = struct { x : i32, };
         \\export fn f() void {
         \\    var a : A = undefined;
@@ -882,27 +1143,37 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    const y = a.bar;
         \\}
     ,
-            ".tmp_source.zig:4:6: error: no member named 'foo' in struct 'A'",
-            ".tmp_source.zig:5:16: error: no member named 'bar' in struct 'A'");
+        ".tmp_source.zig:4:6: error: no member named 'foo' in struct 'A'",
+        ".tmp_source.zig:5:16: error: no member named 'bar' in struct 'A'",
+    );
 
-    cases.add("redefinition of struct",
+    cases.add(
+        "redefinition of struct",
         \\const A = struct { x : i32, };
         \\const A = struct { y : i32, };
-    , ".tmp_source.zig:2:1: error: redefinition of 'A'");
+    ,
+        ".tmp_source.zig:2:1: error: redefinition of 'A'",
+    );
 
-    cases.add("redefinition of enums",
+    cases.add(
+        "redefinition of enums",
         \\const A = enum {};
         \\const A = enum {};
-    , ".tmp_source.zig:2:1: error: redefinition of 'A'");
+    ,
+        ".tmp_source.zig:2:1: error: redefinition of 'A'",
+    );
 
-    cases.add("redefinition of global variables",
+    cases.add(
+        "redefinition of global variables",
         \\var a : i32 = 1;
         \\var a : i32 = 2;
     ,
-            ".tmp_source.zig:2:1: error: redefinition of 'a'",
-            ".tmp_source.zig:1:1: note: previous definition is here");
+        ".tmp_source.zig:2:1: error: redefinition of 'a'",
+        ".tmp_source.zig:1:1: note: previous definition is here",
+    );
 
-    cases.add("duplicate field in struct value expression",
+    cases.add(
+        "duplicate field in struct value expression",
         \\const A = struct {
         \\    x : i32,
         \\    y : i32,
@@ -916,9 +1187,12 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\        .z = 4,
         \\    };
         \\}
-    , ".tmp_source.zig:11:9: error: duplicate field");
+    ,
+        ".tmp_source.zig:11:9: error: duplicate field",
+    );
 
-    cases.add("missing field in struct value expression",
+    cases.add(
+        "missing field in struct value expression",
         \\const A = struct {
         \\    x : i32,
         \\    y : i32,
@@ -932,9 +1206,12 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\        .y = 2,
         \\    };
         \\}
-    , ".tmp_source.zig:9:17: error: missing field: 'x'");
+    ,
+        ".tmp_source.zig:9:17: error: missing field: 'x'",
+    );
 
-    cases.add("invalid field in struct value expression",
+    cases.add(
+        "invalid field in struct value expression",
         \\const A = struct {
         \\    x : i32,
         \\    y : i32,
@@ -947,66 +1224,95 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\        .foo = 42,
         \\    };
         \\}
-    , ".tmp_source.zig:10:9: error: no member named 'foo' in struct 'A'");
+    ,
+        ".tmp_source.zig:10:9: error: no member named 'foo' in struct 'A'",
+    );
 
-    cases.add("invalid break expression",
+    cases.add(
+        "invalid break expression",
         \\export fn f() void {
         \\    break;
         \\}
-    , ".tmp_source.zig:2:5: error: break expression outside loop");
+    ,
+        ".tmp_source.zig:2:5: error: break expression outside loop",
+    );
 
-    cases.add("invalid continue expression",
+    cases.add(
+        "invalid continue expression",
         \\export fn f() void {
         \\    continue;
         \\}
-    , ".tmp_source.zig:2:5: error: continue expression outside loop");
+    ,
+        ".tmp_source.zig:2:5: error: continue expression outside loop",
+    );
 
-    cases.add("invalid maybe type",
+    cases.add(
+        "invalid maybe type",
         \\export fn f() void {
         \\    if (true) |x| { }
         \\}
-    , ".tmp_source.zig:2:9: error: expected nullable type, found 'bool'");
+    ,
+        ".tmp_source.zig:2:9: error: expected nullable type, found 'bool'",
+    );
 
-    cases.add("cast unreachable",
+    cases.add(
+        "cast unreachable",
         \\fn f() i32 {
         \\    return i32(return 1);
         \\}
         \\export fn entry() void { _ = f(); }
-    , ".tmp_source.zig:2:15: error: unreachable code");
+    ,
+        ".tmp_source.zig:2:15: error: unreachable code",
+    );
 
-    cases.add("invalid builtin fn",
+    cases.add(
+        "invalid builtin fn",
         \\fn f() @bogus(foo) {
         \\}
         \\export fn entry() void { _ = f(); }
-    , ".tmp_source.zig:1:8: error: invalid builtin function: 'bogus'");
+    ,
+        ".tmp_source.zig:1:8: error: invalid builtin function: 'bogus'",
+    );
 
-    cases.add("top level decl dependency loop",
+    cases.add(
+        "top level decl dependency loop",
         \\const a : @typeOf(b) = 0;
         \\const b : @typeOf(a) = 0;
         \\export fn entry() void {
         \\    const c = a + b;
         \\}
-    , ".tmp_source.zig:1:1: error: 'a' depends on itself");
+    ,
+        ".tmp_source.zig:1:1: error: 'a' depends on itself",
+    );
 
-    cases.add("noalias on non pointer param",
+    cases.add(
+        "noalias on non pointer param",
         \\fn f(noalias x: i32) void {}
         \\export fn entry() void { f(1234); }
-    , ".tmp_source.zig:1:6: error: noalias on non-pointer parameter");
+    ,
+        ".tmp_source.zig:1:6: error: noalias on non-pointer parameter",
+    );
 
-    cases.add("struct init syntax for array",
+    cases.add(
+        "struct init syntax for array",
         \\const foo = []u16{.x = 1024,};
         \\export fn entry() usize { return @sizeOf(@typeOf(foo)); }
-    , ".tmp_source.zig:1:18: error: type '[]u16' does not support struct initialization syntax");
+    ,
+        ".tmp_source.zig:1:18: error: type '[]u16' does not support struct initialization syntax",
+    );
 
-    cases.add("type variables must be constant",
+    cases.add(
+        "type variables must be constant",
         \\var foo = u8;
         \\export fn entry() foo {
         \\    return 1;
         \\}
-    , ".tmp_source.zig:1:1: error: variable of type 'type' must be constant");
-
+    ,
+        ".tmp_source.zig:1:1: error: variable of type 'type' must be constant",
+    );
 
-    cases.add("variables shadowing types",
+    cases.add(
+        "variables shadowing types",
         \\const Foo = struct {};
         \\const Bar = struct {};
         \\
@@ -1018,12 +1324,14 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    f(1234);
         \\}
     ,
-            ".tmp_source.zig:4:6: error: redefinition of 'Foo'",
-            ".tmp_source.zig:1:1: note: previous definition is here",
-            ".tmp_source.zig:5:5: error: redefinition of 'Bar'",
-            ".tmp_source.zig:2:1: note: previous definition is here");
+        ".tmp_source.zig:4:6: error: redefinition of 'Foo'",
+        ".tmp_source.zig:1:1: note: previous definition is here",
+        ".tmp_source.zig:5:5: error: redefinition of 'Bar'",
+        ".tmp_source.zig:2:1: note: previous definition is here",
+    );
 
-    cases.add("switch expression - missing enumeration prong",
+    cases.add(
+        "switch expression - missing enumeration prong",
         \\const Number = enum {
         \\    One,
         \\    Two,
@@ -1039,9 +1347,12 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(f)); }
-    , ".tmp_source.zig:8:5: error: enumeration value 'Number.Four' not handled in switch");
+    ,
+        ".tmp_source.zig:8:5: error: enumeration value 'Number.Four' not handled in switch",
+    );
 
-    cases.add("switch expression - duplicate enumeration prong",
+    cases.add(
+        "switch expression - duplicate enumeration prong",
         \\const Number = enum {
         \\    One,
         \\    Two,
@@ -1059,10 +1370,13 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(f)); }
-    , ".tmp_source.zig:13:15: error: duplicate switch value",
-      ".tmp_source.zig:10:15: note: other value is here");
+    ,
+        ".tmp_source.zig:13:15: error: duplicate switch value",
+        ".tmp_source.zig:10:15: note: other value is here",
+    );
 
-    cases.add("switch expression - duplicate enumeration prong when else present",
+    cases.add(
+        "switch expression - duplicate enumeration prong when else present",
         \\const Number = enum {
         \\    One,
         \\    Two,
@@ -1081,10 +1395,13 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(f)); }
-    , ".tmp_source.zig:13:15: error: duplicate switch value",
-      ".tmp_source.zig:10:15: note: other value is here");
+    ,
+        ".tmp_source.zig:13:15: error: duplicate switch value",
+        ".tmp_source.zig:10:15: note: other value is here",
+    );
 
-    cases.add("switch expression - multiple else prongs",
+    cases.add(
+        "switch expression - multiple else prongs",
         \\fn f(x: u32) void {
         \\    const value: bool = switch (x) {
         \\        1234 => false,
@@ -1095,9 +1412,12 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\export fn entry() void {
         \\    f(1234);
         \\}
-    , ".tmp_source.zig:5:9: error: multiple else prongs in switch expression");
+    ,
+        ".tmp_source.zig:5:9: error: multiple else prongs in switch expression",
+    );
 
-    cases.add("switch expression - non exhaustive integer prongs",
+    cases.add(
+        "switch expression - non exhaustive integer prongs",
         \\fn foo(x: u8) void {
         \\    switch (x) {
         \\        0 => {},
@@ -1105,9 +1425,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
         \\export fn entry() usize { return @sizeOf(@typeOf(foo)); }
     ,
-        ".tmp_source.zig:2:5: error: switch must handle all possibilities");
+        ".tmp_source.zig:2:5: error: switch must handle all possibilities",
+    );
 
-    cases.add("switch expression - duplicate or overlapping integer value",
+    cases.add(
+        "switch expression - duplicate or overlapping integer value",
         \\fn foo(x: u8) u8 {
         \\    return switch (x) {
         \\        0 ... 100 => u8(0),
@@ -1119,9 +1441,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\export fn entry() usize { return @sizeOf(@typeOf(foo)); }
     ,
         ".tmp_source.zig:6:9: error: duplicate switch value",
-        ".tmp_source.zig:5:14: note: previous value is here");
+        ".tmp_source.zig:5:14: note: previous value is here",
+    );
 
-    cases.add("switch expression - switch on pointer type with no else",
+    cases.add(
+        "switch expression - switch on pointer type with no else",
         \\fn foo(x: &u8) void {
         \\    switch (x) {
         \\        &y => {},
@@ -1130,54 +1454,77 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\const y: u8 = 100;
         \\export fn entry() usize { return @sizeOf(@typeOf(foo)); }
     ,
-        ".tmp_source.zig:2:5: error: else prong required when switching on type '&u8'");
+        ".tmp_source.zig:2:5: error: else prong required when switching on type '&u8'",
+    );
 
-    cases.add("global variable initializer must be constant expression",
+    cases.add(
+        "global variable initializer must be constant expression",
         \\extern fn foo() i32;
         \\const x = foo();
         \\export fn entry() i32 { return x; }
-    , ".tmp_source.zig:2:11: error: unable to evaluate constant expression");
+    ,
+        ".tmp_source.zig:2:11: error: unable to evaluate constant expression",
+    );
 
-    cases.add("array concatenation with wrong type",
+    cases.add(
+        "array concatenation with wrong type",
         \\const src = "aoeu";
         \\const derp = usize(1234);
         \\const a = derp ++ "foo";
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(a)); }
-    , ".tmp_source.zig:3:11: error: expected array or C string literal, found 'usize'");
+    ,
+        ".tmp_source.zig:3:11: error: expected array or C string literal, found 'usize'",
+    );
 
-    cases.add("non compile time array concatenation",
+    cases.add(
+        "non compile time array concatenation",
         \\fn f() []u8 {
         \\    return s ++ "foo";
         \\}
         \\var s: [10]u8 = undefined;
         \\export fn entry() usize { return @sizeOf(@typeOf(f)); }
-    , ".tmp_source.zig:2:12: error: unable to evaluate constant expression");
+    ,
+        ".tmp_source.zig:2:12: error: unable to evaluate constant expression",
+    );
 
-    cases.add("@cImport with bogus include",
+    cases.add(
+        "@cImport with bogus include",
         \\const c = @cImport(@cInclude("bogus.h"));
         \\export fn entry() usize { return @sizeOf(@typeOf(c.bogo)); }
-    , ".tmp_source.zig:1:11: error: C import failed",
-                 ".h:1:10: note: 'bogus.h' file not found");
+    ,
+        ".tmp_source.zig:1:11: error: C import failed",
+        ".h:1:10: note: 'bogus.h' file not found",
+    );
 
-    cases.add("address of number literal",
+    cases.add(
+        "address of number literal",
         \\const x = 3;
         \\const y = &x;
         \\fn foo() &const i32 { return y; }
         \\export fn entry() usize { return @sizeOf(@typeOf(foo)); }
-    , ".tmp_source.zig:3:30: error: expected type '&const i32', found '&const (integer literal)'");
+    ,
+        ".tmp_source.zig:3:30: error: expected type '&const i32', found '&const (integer literal)'",
+    );
 
-    cases.add("integer overflow error",
+    cases.add(
+        "integer overflow error",
         \\const x : u8 = 300;
         \\export fn entry() usize { return @sizeOf(@typeOf(x)); }
-    , ".tmp_source.zig:1:16: error: integer value 300 cannot be implicitly casted to type 'u8'");
+    ,
+        ".tmp_source.zig:1:16: error: integer value 300 cannot be implicitly casted to type 'u8'",
+    );
 
-    cases.add("incompatible number literals",
+    cases.add(
+        "incompatible number literals",
         \\const x = 2 == 2.0;
         \\export fn entry() usize { return @sizeOf(@typeOf(x)); }
-    , ".tmp_source.zig:1:11: error: integer value 2 cannot be implicitly casted to type '(float literal)'");
+    ,
+        ".tmp_source.zig:1:11: error: integer value 2 cannot be implicitly casted to type '(float literal)'",
+    );
 
-    cases.add("missing function call param",
+    cases.add(
+        "missing function call param",
         \\const Foo = struct {
         \\    a: i32,
         \\    b: i32,
@@ -1201,58 +1548,73 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(f)); }
-    , ".tmp_source.zig:20:34: error: expected 1 arguments, found 0");
+    ,
+        ".tmp_source.zig:20:34: error: expected 1 arguments, found 0",
+    );
 
-    cases.add("missing function name and param name",
+    cases.add(
+        "missing function name and param name",
         \\fn () void {}
         \\fn f(i32) void {}
         \\export fn entry() usize { return @sizeOf(@typeOf(f)); }
     ,
-            ".tmp_source.zig:1:1: error: missing function name",
-            ".tmp_source.zig:2:6: error: missing parameter name");
+        ".tmp_source.zig:1:1: error: missing function name",
+        ".tmp_source.zig:2:6: error: missing parameter name",
+    );
 
-    cases.add("wrong function type",
+    cases.add(
+        "wrong function type",
         \\const fns = []fn() void { a, b, c };
         \\fn a() i32 {return 0;}
         \\fn b() i32 {return 1;}
         \\fn c() i32 {return 2;}
         \\export fn entry() usize { return @sizeOf(@typeOf(fns)); }
-    , ".tmp_source.zig:1:27: error: expected type 'fn() void', found 'fn() i32'");
+    ,
+        ".tmp_source.zig:1:27: error: expected type 'fn() void', found 'fn() i32'",
+    );
 
-    cases.add("extern function pointer mismatch",
+    cases.add(
+        "extern function pointer mismatch",
         \\const fns = [](fn(i32)i32) { a, b, c };
         \\pub fn a(x: i32) i32 {return x + 0;}
         \\pub fn b(x: i32) i32 {return x + 1;}
         \\export fn c(x: i32) i32 {return x + 2;}
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(fns)); }
-    , ".tmp_source.zig:1:36: error: expected type 'fn(i32) i32', found 'extern fn(i32) i32'");
-
+    ,
+        ".tmp_source.zig:1:36: error: expected type 'fn(i32) i32', found 'extern fn(i32) i32'",
+    );
 
-    cases.add("implicit cast from f64 to f32",
+    cases.add(
+        "implicit cast from f64 to f32",
         \\const x : f64 = 1.0;
         \\const y : f32 = x;
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(y)); }
-    , ".tmp_source.zig:2:17: error: expected type 'f32', found 'f64'");
-
+    ,
+        ".tmp_source.zig:2:17: error: expected type 'f32', found 'f64'",
+    );
 
-    cases.add("colliding invalid top level functions",
+    cases.add(
+        "colliding invalid top level functions",
         \\fn func() bogus {}
         \\fn func() bogus {}
         \\export fn entry() usize { return @sizeOf(@typeOf(func)); }
     ,
-            ".tmp_source.zig:2:1: error: redefinition of 'func'",
-            ".tmp_source.zig:1:11: error: use of undeclared identifier 'bogus'");
+        ".tmp_source.zig:2:1: error: redefinition of 'func'",
+        ".tmp_source.zig:1:11: error: use of undeclared identifier 'bogus'",
+    );
 
-
-    cases.add("bogus compile var",
+    cases.add(
+        "bogus compile var",
         \\const x = @import("builtin").bogus;
         \\export fn entry() usize { return @sizeOf(@typeOf(x)); }
-    , ".tmp_source.zig:1:29: error: no member named 'bogus' in '");
-
+    ,
+        ".tmp_source.zig:1:29: error: no member named 'bogus' in '",
+    );
 
-    cases.add("non constant expression in array size outside function",
+    cases.add(
+        "non constant expression in array size outside function",
         \\const Foo = struct {
         \\    y: [get()]u8,
         \\};
@@ -1261,22 +1623,25 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(Foo)); }
     ,
-            ".tmp_source.zig:5:25: error: unable to evaluate constant expression",
-            ".tmp_source.zig:2:12: note: called from here",
-            ".tmp_source.zig:2:8: note: called from here");
-
+        ".tmp_source.zig:5:25: error: unable to evaluate constant expression",
+        ".tmp_source.zig:2:12: note: called from here",
+        ".tmp_source.zig:2:8: note: called from here",
+    );
 
-    cases.add("addition with non numbers",
+    cases.add(
+        "addition with non numbers",
         \\const Foo = struct {
         \\    field: i32,
         \\};
         \\const x = Foo {.field = 1} + Foo {.field = 2};
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(x)); }
-    , ".tmp_source.zig:4:28: error: invalid operands to binary expression: 'Foo' and 'Foo'");
-
+    ,
+        ".tmp_source.zig:4:28: error: invalid operands to binary expression: 'Foo' and 'Foo'",
+    );
 
-    cases.add("division by zero",
+    cases.add(
+        "division by zero",
         \\const lit_int_x = 1 / 0;
         \\const lit_float_x = 1.0 / 0.0;
         \\const int_x = u32(1) / u32(0);
@@ -1287,49 +1652,65 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\export fn entry3() usize { return @sizeOf(@typeOf(int_x)); }
         \\export fn entry4() usize { return @sizeOf(@typeOf(float_x)); }
     ,
-            ".tmp_source.zig:1:21: error: division by zero",
-            ".tmp_source.zig:2:25: error: division by zero",
-            ".tmp_source.zig:3:22: error: division by zero",
-            ".tmp_source.zig:4:26: error: division by zero");
-
+        ".tmp_source.zig:1:21: error: division by zero",
+        ".tmp_source.zig:2:25: error: division by zero",
+        ".tmp_source.zig:3:22: error: division by zero",
+        ".tmp_source.zig:4:26: error: division by zero",
+    );
 
-    cases.add("normal string with newline",
+    cases.add(
+        "normal string with newline",
         \\const foo = "a
         \\b";
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(foo)); }
-    , ".tmp_source.zig:1:13: error: newline not allowed in string literal");
+    ,
+        ".tmp_source.zig:1:13: error: newline not allowed in string literal",
+    );
 
-    cases.add("invalid comparison for function pointers",
+    cases.add(
+        "invalid comparison for function pointers",
         \\fn foo() void {}
         \\const invalid = foo > foo;
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(invalid)); }
-    , ".tmp_source.zig:2:21: error: operator not allowed for type 'fn() void'");
+    ,
+        ".tmp_source.zig:2:21: error: operator not allowed for type 'fn() void'",
+    );
 
-    cases.add("generic function instance with non-constant expression",
+    cases.add(
+        "generic function instance with non-constant expression",
         \\fn foo(comptime x: i32, y: i32) i32 { return x + y; }
         \\fn test1(a: i32, b: i32) i32 {
         \\    return foo(a, b);
         \\}
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(test1)); }
-    , ".tmp_source.zig:3:16: error: unable to evaluate constant expression");
+    ,
+        ".tmp_source.zig:3:16: error: unable to evaluate constant expression",
+    );
 
-    cases.add("assign null to non-nullable pointer",
+    cases.add(
+        "assign null to non-nullable pointer",
         \\const a: &u8 = null;
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(a)); }
-    , ".tmp_source.zig:1:16: error: expected type '&u8', found '(null)'");
+    ,
+        ".tmp_source.zig:1:16: error: expected type '&u8', found '(null)'",
+    );
 
-    cases.add("indexing an array of size zero",
+    cases.add(
+        "indexing an array of size zero",
         \\const array = []u8{};
         \\export fn foo() void {
         \\    const pointer = &array[0];
         \\}
-    , ".tmp_source.zig:3:27: error: index 0 outside array of size 0");
+    ,
+        ".tmp_source.zig:3:27: error: index 0 outside array of size 0",
+    );
 
-    cases.add("compile time division by zero",
+    cases.add(
+        "compile time division by zero",
         \\const y = foo(0);
         \\fn foo(x: u32) u32 {
         \\    return 1 / x;
@@ -1337,17 +1718,21 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(y)); }
     ,
-            ".tmp_source.zig:3:14: error: division by zero",
-            ".tmp_source.zig:1:14: note: called from here");
+        ".tmp_source.zig:3:14: error: division by zero",
+        ".tmp_source.zig:1:14: note: called from here",
+    );
 
-    cases.add("branch on undefined value",
+    cases.add(
+        "branch on undefined value",
         \\const x = if (undefined) true else false;
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(x)); }
-    , ".tmp_source.zig:1:15: error: use of undefined value");
-
+    ,
+        ".tmp_source.zig:1:15: error: use of undefined value",
+    );
 
-    cases.add("endless loop in function evaluation",
+    cases.add(
+        "endless loop in function evaluation",
         \\const seventh_fib_number = fibbonaci(7);
         \\fn fibbonaci(x: i32) i32 {
         \\    return fibbonaci(x - 1) + fibbonaci(x - 2);
@@ -1355,16 +1740,22 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(seventh_fib_number)); }
     ,
-            ".tmp_source.zig:3:21: error: evaluation exceeded 1000 backwards branches",
-            ".tmp_source.zig:3:21: note: called from here");
+        ".tmp_source.zig:3:21: error: evaluation exceeded 1000 backwards branches",
+        ".tmp_source.zig:3:21: note: called from here",
+    );
 
-    cases.add("@embedFile with bogus file",
-        \\const resource = @embedFile("bogus.txt");
+    cases.add(
+        "@embedFile with bogus file",
+        \\const resource = @embedFile("bogus.txt",);
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(resource)); }
-    , ".tmp_source.zig:1:29: error: unable to find '", "bogus.txt'");
+    ,
+        ".tmp_source.zig:1:29: error: unable to find '",
+        "bogus.txt'",
+    );
 
-    cases.add("non-const expression in struct literal outside function",
+    cases.add(
+        "non-const expression in struct literal outside function",
         \\const Foo = struct {
         \\    x: i32,
         \\};
@@ -1372,9 +1763,12 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\extern fn get_it() i32;
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(a)); }
-    , ".tmp_source.zig:4:21: error: unable to evaluate constant expression");
+    ,
+        ".tmp_source.zig:4:21: error: unable to evaluate constant expression",
+    );
 
-    cases.add("non-const expression function call with struct return value outside function",
+    cases.add(
+        "non-const expression function call with struct return value outside function",
         \\const Foo = struct {
         \\    x: i32,
         \\};
@@ -1387,19 +1781,24 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(a)); }
     ,
-            ".tmp_source.zig:6:24: error: unable to evaluate constant expression",
-            ".tmp_source.zig:4:17: note: called from here");
+        ".tmp_source.zig:6:24: error: unable to evaluate constant expression",
+        ".tmp_source.zig:4:17: note: called from here",
+    );
 
-    cases.add("undeclared identifier error should mark fn as impure",
+    cases.add(
+        "undeclared identifier error should mark fn as impure",
         \\export fn foo() void {
         \\    test_a_thing();
         \\}
         \\fn test_a_thing() void {
         \\    bad_fn_call();
         \\}
-    , ".tmp_source.zig:5:5: error: use of undeclared identifier 'bad_fn_call'");
+    ,
+        ".tmp_source.zig:5:5: error: use of undeclared identifier 'bad_fn_call'",
+    );
 
-    cases.add("illegal comparison of types",
+    cases.add(
+        "illegal comparison of types",
         \\fn bad_eql_1(a: []u8, b: []u8) bool {
         \\    return a == b;
         \\}
@@ -1414,10 +1813,12 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\export fn entry1() usize { return @sizeOf(@typeOf(bad_eql_1)); }
         \\export fn entry2() usize { return @sizeOf(@typeOf(bad_eql_2)); }
     ,
-            ".tmp_source.zig:2:14: error: operator not allowed for type '[]u8'",
-            ".tmp_source.zig:9:16: error: operator not allowed for type 'EnumWithData'");
+        ".tmp_source.zig:2:14: error: operator not allowed for type '[]u8'",
+        ".tmp_source.zig:9:16: error: operator not allowed for type 'EnumWithData'",
+    );
 
-    cases.add("non-const switch number literal",
+    cases.add(
+        "non-const switch number literal",
         \\export fn foo() void {
         \\    const x = switch (bar()) {
         \\        1, 2 => 1,
@@ -1428,25 +1829,34 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\fn bar() i32 {
         \\    return 2;
         \\}
-    , ".tmp_source.zig:2:15: error: unable to infer expression type");
+    ,
+        ".tmp_source.zig:2:15: error: unable to infer expression type",
+    );
 
-    cases.add("atomic orderings of cmpxchg - failure stricter than success",
+    cases.add(
+        "atomic orderings of cmpxchg - failure stricter than success",
         \\const AtomicOrder = @import("builtin").AtomicOrder;
         \\export fn f() void {
         \\    var x: i32 = 1234;
         \\    while (!@cmpxchgWeak(i32, &x, 1234, 5678, AtomicOrder.Monotonic, AtomicOrder.SeqCst)) {}
         \\}
-    , ".tmp_source.zig:4:81: error: failure atomic ordering must be no stricter than success");
+    ,
+        ".tmp_source.zig:4:81: error: failure atomic ordering must be no stricter than success",
+    );
 
-    cases.add("atomic orderings of cmpxchg - success Monotonic or stricter",
+    cases.add(
+        "atomic orderings of cmpxchg - success Monotonic or stricter",
         \\const AtomicOrder = @import("builtin").AtomicOrder;
         \\export fn f() void {
         \\    var x: i32 = 1234;
         \\    while (!@cmpxchgWeak(i32, &x, 1234, 5678, AtomicOrder.Unordered, AtomicOrder.Unordered)) {}
         \\}
-    , ".tmp_source.zig:4:58: error: success atomic ordering must be Monotonic or stricter");
+    ,
+        ".tmp_source.zig:4:58: error: success atomic ordering must be Monotonic or stricter",
+    );
 
-    cases.add("negation overflow in function evaluation",
+    cases.add(
+        "negation overflow in function evaluation",
         \\const y = neg(-128);
         \\fn neg(x: i8) i8 {
         \\    return -x;
@@ -1454,10 +1864,12 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(y)); }
     ,
-            ".tmp_source.zig:3:12: error: negation caused overflow",
-            ".tmp_source.zig:1:14: note: called from here");
+        ".tmp_source.zig:3:12: error: negation caused overflow",
+        ".tmp_source.zig:1:14: note: called from here",
+    );
 
-    cases.add("add overflow in function evaluation",
+    cases.add(
+        "add overflow in function evaluation",
         \\const y = add(65530, 10);
         \\fn add(a: u16, b: u16) u16 {
         \\    return a + b;
@@ -1465,11 +1877,12 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(y)); }
     ,
-            ".tmp_source.zig:3:14: error: operation caused overflow",
-            ".tmp_source.zig:1:14: note: called from here");
-
+        ".tmp_source.zig:3:14: error: operation caused overflow",
+        ".tmp_source.zig:1:14: note: called from here",
+    );
 
-    cases.add("sub overflow in function evaluation",
+    cases.add(
+        "sub overflow in function evaluation",
         \\const y = sub(10, 20);
         \\fn sub(a: u16, b: u16) u16 {
         \\    return a - b;
@@ -1477,10 +1890,12 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(y)); }
     ,
-            ".tmp_source.zig:3:14: error: operation caused overflow",
-            ".tmp_source.zig:1:14: note: called from here");
+        ".tmp_source.zig:3:14: error: operation caused overflow",
+        ".tmp_source.zig:1:14: note: called from here",
+    );
 
-    cases.add("mul overflow in function evaluation",
+    cases.add(
+        "mul overflow in function evaluation",
         \\const y = mul(300, 6000);
         \\fn mul(a: u16, b: u16) u16 {
         \\    return a * b;
@@ -1488,27 +1903,34 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(y)); }
     ,
-            ".tmp_source.zig:3:14: error: operation caused overflow",
-            ".tmp_source.zig:1:14: note: called from here");
+        ".tmp_source.zig:3:14: error: operation caused overflow",
+        ".tmp_source.zig:1:14: note: called from here",
+    );
 
-    cases.add("truncate sign mismatch",
+    cases.add(
+        "truncate sign mismatch",
         \\fn f() i8 {
         \\    const x: u32 = 10;
         \\    return @truncate(i8, x);
         \\}
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(f)); }
-    , ".tmp_source.zig:3:26: error: expected signed integer type, found 'u32'");
+    ,
+        ".tmp_source.zig:3:26: error: expected signed integer type, found 'u32'",
+    );
 
-    cases.add("try in function with non error return type",
+    cases.add(
+        "try in function with non error return type",
         \\export fn f() void {
         \\    try something();
         \\}
         \\fn something() error!void { }
     ,
-            ".tmp_source.zig:2:5: error: expected type 'void', found 'error'");
+        ".tmp_source.zig:2:5: error: expected type 'void', found 'error'",
+    );
 
-    cases.add("invalid pointer for var type",
+    cases.add(
+        "invalid pointer for var type",
         \\extern fn ext() usize;
         \\var bytes: [ext()]u8 = undefined;
         \\export fn f() void {
@@ -1516,30 +1938,42 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\        b.* = u8(i);
         \\    }
         \\}
-    , ".tmp_source.zig:2:13: error: unable to evaluate constant expression");
+    ,
+        ".tmp_source.zig:2:13: error: unable to evaluate constant expression",
+    );
 
-    cases.add("export function with comptime parameter",
+    cases.add(
+        "export function with comptime parameter",
         \\export fn foo(comptime x: i32, y: i32) i32{
         \\    return x + y;
         \\}
-    , ".tmp_source.zig:1:15: error: comptime parameter not allowed in function with calling convention 'ccc'");
+    ,
+        ".tmp_source.zig:1:15: error: comptime parameter not allowed in function with calling convention 'ccc'",
+    );
 
-    cases.add("extern function with comptime parameter",
+    cases.add(
+        "extern function with comptime parameter",
         \\extern fn foo(comptime x: i32, y: i32) i32;
         \\fn f() i32 {
         \\    return foo(1, 2);
         \\}
         \\export fn entry() usize { return @sizeOf(@typeOf(f)); }
-    , ".tmp_source.zig:1:15: error: comptime parameter not allowed in function with calling convention 'ccc'");
+    ,
+        ".tmp_source.zig:1:15: error: comptime parameter not allowed in function with calling convention 'ccc'",
+    );
 
-    cases.add("convert fixed size array to slice with invalid size",
+    cases.add(
+        "convert fixed size array to slice with invalid size",
         \\export fn f() void {
         \\    var array: [5]u8 = undefined;
         \\    var foo = ([]const u32)(array)[0];
         \\}
-    , ".tmp_source.zig:3:28: error: unable to convert [5]u8 to []const u32: size mismatch");
+    ,
+        ".tmp_source.zig:3:28: error: unable to convert [5]u8 to []const u32: size mismatch",
+    );
 
-    cases.add("non-pure function returns type",
+    cases.add(
+        "non-pure function returns type",
         \\var a: u32 = 0;
         \\pub fn List(comptime T: type) type {
         \\    a += 1;
@@ -1558,18 +1992,24 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    var list: List(i32) = undefined;
         \\    list.length = 10;
         \\}
-    , ".tmp_source.zig:3:7: error: unable to evaluate constant expression",
-        ".tmp_source.zig:16:19: note: called from here");
+    ,
+        ".tmp_source.zig:3:7: error: unable to evaluate constant expression",
+        ".tmp_source.zig:16:19: note: called from here",
+    );
 
-    cases.add("bogus method call on slice",
+    cases.add(
+        "bogus method call on slice",
         \\var self = "aoeu";
         \\fn f(m: []const u8) void {
         \\    m.copy(u8, self[0..], m);
         \\}
         \\export fn entry() usize { return @sizeOf(@typeOf(f)); }
-    , ".tmp_source.zig:3:6: error: no member named 'copy' in '[]const u8'");
+    ,
+        ".tmp_source.zig:3:6: error: no member named 'copy' in '[]const u8'",
+    );
 
-    cases.add("wrong number of arguments for method fn call",
+    cases.add(
+        "wrong number of arguments for method fn call",
         \\const Foo = struct {
         \\    fn method(self: &const Foo, a: i32) void {}
         \\};
@@ -1578,34 +2018,49 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    foo.method(1, 2);
         \\}
         \\export fn entry() usize { return @sizeOf(@typeOf(f)); }
-    , ".tmp_source.zig:6:15: error: expected 2 arguments, found 3");
+    ,
+        ".tmp_source.zig:6:15: error: expected 2 arguments, found 3",
+    );
 
-    cases.add("assign through constant pointer",
+    cases.add(
+        "assign through constant pointer",
         \\export fn f() void {
         \\  var cstr = c"Hat";
         \\  cstr[0] = 'W';
         \\}
-    , ".tmp_source.zig:3:11: error: cannot assign to constant");
+    ,
+        ".tmp_source.zig:3:11: error: cannot assign to constant",
+    );
 
-    cases.add("assign through constant slice",
+    cases.add(
+        "assign through constant slice",
         \\export fn f() void {
         \\  var cstr: []const u8 = "Hat";
         \\  cstr[0] = 'W';
         \\}
-    , ".tmp_source.zig:3:11: error: cannot assign to constant");
+    ,
+        ".tmp_source.zig:3:11: error: cannot assign to constant",
+    );
 
-    cases.add("main function with bogus args type",
+    cases.add(
+        "main function with bogus args type",
         \\pub fn main(args: [][]bogus) !void {}
-    , ".tmp_source.zig:1:23: error: use of undeclared identifier 'bogus'");
+    ,
+        ".tmp_source.zig:1:23: error: use of undeclared identifier 'bogus'",
+    );
 
-    cases.add("for loop missing element param",
+    cases.add(
+        "for loop missing element param",
         \\fn foo(blah: []u8) void {
         \\    for (blah) { }
         \\}
         \\export fn entry() usize { return @sizeOf(@typeOf(foo)); }
-    , ".tmp_source.zig:2:5: error: for loop expression missing element parameter");
+    ,
+        ".tmp_source.zig:2:5: error: for loop expression missing element parameter",
+    );
 
-    cases.add("misspelled type with pointer only reference",
+    cases.add(
+        "misspelled type with pointer only reference",
         \\const JasonHM = u8;
         \\const JasonList = &JsonNode;
         \\
@@ -1636,9 +2091,12 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(foo)); }
-    , ".tmp_source.zig:5:16: error: use of undeclared identifier 'JsonList'");
+    ,
+        ".tmp_source.zig:5:16: error: use of undeclared identifier 'JsonList'",
+    );
 
-    cases.add("method call with first arg type primitive",
+    cases.add(
+        "method call with first arg type primitive",
         \\const Foo = struct {
         \\    x: i32,
         \\
@@ -1654,9 +2112,12 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\
         \\    derp.init();
         \\}
-    , ".tmp_source.zig:14:5: error: expected type 'i32', found '&const Foo'");
+    ,
+        ".tmp_source.zig:14:5: error: expected type 'i32', found '&const Foo'",
+    );
 
-    cases.add("method call with first arg type wrong container",
+    cases.add(
+        "method call with first arg type wrong container",
         \\pub const List = struct {
         \\    len: usize,
         \\    allocator: &Allocator,
@@ -1681,26 +2142,33 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    var x = List.init(&global_allocator);
         \\    x.init();
         \\}
-    , ".tmp_source.zig:23:5: error: expected type '&Allocator', found '&List'");
+    ,
+        ".tmp_source.zig:23:5: error: expected type '&Allocator', found '&List'",
+    );
 
-    cases.add("binary not on number literal",
+    cases.add(
+        "binary not on number literal",
         \\const TINY_QUANTUM_SHIFT = 4;
         \\const TINY_QUANTUM_SIZE = 1 << TINY_QUANTUM_SHIFT;
         \\var block_aligned_stuff: usize = (4 + TINY_QUANTUM_SIZE) & ~(TINY_QUANTUM_SIZE - 1);
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(block_aligned_stuff)); }
-    , ".tmp_source.zig:3:60: error: unable to perform binary not operation on type '(integer literal)'");
+    ,
+        ".tmp_source.zig:3:60: error: unable to perform binary not operation on type '(integer literal)'",
+    );
 
     cases.addCase(x: {
-        const tc = cases.create("multiple files with private function error",
-            \\const foo = @import("foo.zig");
+        const tc = cases.create(
+            "multiple files with private function error",
+            \\const foo = @import("foo.zig",);
             \\
             \\export fn callPrivFunction() void {
             \\    foo.privateFunction();
             \\}
         ,
             ".tmp_source.zig:4:8: error: 'privateFunction' is private",
-            "foo.zig:1:1: note: declared here");
+            "foo.zig:1:1: note: declared here",
+        );
 
         tc.addSourceFile("foo.zig",
             \\fn privateFunction() void { }
@@ -1709,14 +2177,18 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         break :x tc;
     });
 
-    cases.add("container init with non-type",
+    cases.add(
+        "container init with non-type",
         \\const zero: i32 = 0;
         \\const a = zero{1};
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(a)); }
-    , ".tmp_source.zig:2:11: error: expected type, found 'i32'");
+    ,
+        ".tmp_source.zig:2:11: error: expected type, found 'i32'",
+    );
 
-    cases.add("assign to constant field",
+    cases.add(
+        "assign to constant field",
         \\const Foo = struct {
         \\    field: i32,
         \\};
@@ -1724,9 +2196,12 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    const f = Foo {.field = 1234,};
         \\    f.field = 0;
         \\}
-    , ".tmp_source.zig:6:13: error: cannot assign to constant");
+    ,
+        ".tmp_source.zig:6:13: error: cannot assign to constant",
+    );
 
-    cases.add("return from defer expression",
+    cases.add(
+        "return from defer expression",
         \\pub fn testTrickyDefer() !void {
         \\    defer canFail() catch {};
         \\
@@ -1742,9 +2217,12 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(testTrickyDefer)); }
-    , ".tmp_source.zig:4:11: error: cannot return from defer expression");
+    ,
+        ".tmp_source.zig:4:11: error: cannot return from defer expression",
+    );
 
-    cases.add("attempt to access var args out of bounds",
+    cases.add(
+        "attempt to access var args out of bounds",
         \\fn add(args: ...) i32 {
         \\    return args[0] + args[1];
         \\}
@@ -1755,10 +2233,12 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(foo)); }
     ,
-            ".tmp_source.zig:2:26: error: index 1 outside argument list of size 1",
-            ".tmp_source.zig:6:15: note: called from here");
+        ".tmp_source.zig:2:26: error: index 1 outside argument list of size 1",
+        ".tmp_source.zig:6:15: note: called from here",
+    );
 
-    cases.add("pass integer literal to var args",
+    cases.add(
+        "pass integer literal to var args",
         \\fn add(args: ...) i32 {
         \\    var sum = i32(0);
         \\    {comptime var i: usize = 0; inline while (i < args.len) : (i += 1) {
@@ -1772,32 +2252,44 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(bar)); }
-    , ".tmp_source.zig:10:16: error: compiler bug: integer and float literals in var args function must be casted");
+    ,
+        ".tmp_source.zig:10:16: error: compiler bug: integer and float literals in var args function must be casted",
+    );
 
-    cases.add("assign too big number to u16",
+    cases.add(
+        "assign too big number to u16",
         \\export fn foo() void {
         \\    var vga_mem: u16 = 0xB8000;
         \\}
-    , ".tmp_source.zig:2:24: error: integer value 753664 cannot be implicitly casted to type 'u16'");
+    ,
+        ".tmp_source.zig:2:24: error: integer value 753664 cannot be implicitly casted to type 'u16'",
+    );
 
-    cases.add("global variable alignment non power of 2",
+    cases.add(
+        "global variable alignment non power of 2",
         \\const some_data: [100]u8 align(3) = undefined;
         \\export fn entry() usize { return @sizeOf(@typeOf(some_data)); }
-    , ".tmp_source.zig:1:32: error: alignment value 3 is not a power of 2");
+    ,
+        ".tmp_source.zig:1:32: error: alignment value 3 is not a power of 2",
+    );
 
-    cases.add("function alignment non power of 2",
+    cases.add(
+        "function alignment non power of 2",
         \\extern fn foo() align(3) void;
         \\export fn entry() void { return foo(); }
-    , ".tmp_source.zig:1:23: error: alignment value 3 is not a power of 2");
+    ,
+        ".tmp_source.zig:1:23: error: alignment value 3 is not a power of 2",
+    );
 
-    cases.add("compile log",
+    cases.add(
+        "compile log",
         \\export fn foo() void {
-        \\    comptime bar(12, "hi");
+        \\    comptime bar(12, "hi",);
         \\}
         \\fn bar(a: i32, b: []const u8) void {
-        \\    @compileLog("begin");
+        \\    @compileLog("begin",);
         \\    @compileLog("a", a, "b", b);
-        \\    @compileLog("end");
+        \\    @compileLog("end",);
         \\}
     ,
         ".tmp_source.zig:5:5: error: found compile log statement",
@@ -1805,9 +2297,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         ".tmp_source.zig:6:5: error: found compile log statement",
         ".tmp_source.zig:2:17: note: called from here",
         ".tmp_source.zig:7:5: error: found compile log statement",
-        ".tmp_source.zig:2:17: note: called from here");
+        ".tmp_source.zig:2:17: note: called from here",
+    );
 
-    cases.add("casting bit offset pointer to regular pointer",
+    cases.add(
+        "casting bit offset pointer to regular pointer",
         \\const BitField = packed struct {
         \\    a: u3,
         \\    b: u3,
@@ -1823,9 +2317,12 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(foo)); }
-    , ".tmp_source.zig:8:26: error: expected type '&const u3', found '&align(1:3:6) const u3'");
+    ,
+        ".tmp_source.zig:8:26: error: expected type '&const u3', found '&align(1:3:6) const u3'",
+    );
 
-    cases.add("referring to a struct that is invalid",
+    cases.add(
+        "referring to a struct that is invalid",
         \\const UsbDeviceRequest = struct {
         \\    Type: u8,
         \\};
@@ -1838,10 +2335,12 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    if (!ok) unreachable;
         \\}
     ,
-            ".tmp_source.zig:10:14: error: unable to evaluate constant expression",
-            ".tmp_source.zig:6:20: note: called from here");
+        ".tmp_source.zig:10:14: error: unable to evaluate constant expression",
+        ".tmp_source.zig:6:20: note: called from here",
+    );
 
-    cases.add("control flow uses comptime var at runtime",
+    cases.add(
+        "control flow uses comptime var at runtime",
         \\export fn foo() void {
         \\    comptime var i = 0;
         \\    while (i < 5) : (i += 1) {
@@ -1851,55 +2350,78 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\
         \\fn bar() void { }
     ,
-            ".tmp_source.zig:3:5: error: control flow attempts to use compile-time variable at runtime",
-            ".tmp_source.zig:3:24: note: compile-time variable assigned here");
+        ".tmp_source.zig:3:5: error: control flow attempts to use compile-time variable at runtime",
+        ".tmp_source.zig:3:24: note: compile-time variable assigned here",
+    );
 
-    cases.add("ignored return value",
+    cases.add(
+        "ignored return value",
         \\export fn foo() void {
         \\    bar();
         \\}
         \\fn bar() i32 { return 0; }
-    , ".tmp_source.zig:2:8: error: expression value is ignored");
+    ,
+        ".tmp_source.zig:2:8: error: expression value is ignored",
+    );
 
-    cases.add("ignored assert-err-ok return value",
+    cases.add(
+        "ignored assert-err-ok return value",
         \\export fn foo() void {
         \\    bar() catch unreachable;
         \\}
         \\fn bar() error!i32 { return 0; }
-    , ".tmp_source.zig:2:11: error: expression value is ignored");
+    ,
+        ".tmp_source.zig:2:11: error: expression value is ignored",
+    );
 
-    cases.add("ignored statement value",
+    cases.add(
+        "ignored statement value",
         \\export fn foo() void {
         \\    1;
         \\}
-    , ".tmp_source.zig:2:5: error: expression value is ignored");
+    ,
+        ".tmp_source.zig:2:5: error: expression value is ignored",
+    );
 
-    cases.add("ignored comptime statement value",
+    cases.add(
+        "ignored comptime statement value",
         \\export fn foo() void {
         \\    comptime {1;}
         \\}
-    , ".tmp_source.zig:2:15: error: expression value is ignored");
+    ,
+        ".tmp_source.zig:2:15: error: expression value is ignored",
+    );
 
-    cases.add("ignored comptime value",
+    cases.add(
+        "ignored comptime value",
         \\export fn foo() void {
         \\    comptime 1;
         \\}
-    , ".tmp_source.zig:2:5: error: expression value is ignored");
+    ,
+        ".tmp_source.zig:2:5: error: expression value is ignored",
+    );
 
-    cases.add("ignored defered statement value",
+    cases.add(
+        "ignored defered statement value",
         \\export fn foo() void {
         \\    defer {1;}
         \\}
-    , ".tmp_source.zig:2:12: error: expression value is ignored");
+    ,
+        ".tmp_source.zig:2:12: error: expression value is ignored",
+    );
 
-    cases.add("ignored defered function call",
+    cases.add(
+        "ignored defered function call",
         \\export fn foo() void {
         \\    defer bar();
         \\}
         \\fn bar() error!i32 { return 0; }
-    , ".tmp_source.zig:2:14: error: expression value is ignored");
+    ,
+        ".tmp_source.zig:2:14: error: expression value is ignored",
+    );
 
-    cases.add("dereference an array",
+    cases.add(
+        "dereference an array",
         \\var s_buffer: [10]u8 = undefined;
         \\pub fn pass(in: []u8) []u8 {
         \\    var out = &s_buffer;
@@ -1908,11 +2430,14 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(pass)); }
-    , ".tmp_source.zig:4:11: error: attempt to dereference non pointer type '[10]u8'");
+    ,
+        ".tmp_source.zig:4:11: error: attempt to dereference non pointer type '[10]u8'",
+    );
 
-    cases.add("pass const ptr to mutable ptr fn",
+    cases.add(
+        "pass const ptr to mutable ptr fn",
         \\fn foo() bool {
-        \\    const a = ([]const u8)("a");
+        \\    const a = ([]const u8)("a",);
         \\    const b = &a;
         \\    return ptrEql(b, b);
         \\}
@@ -1921,18 +2446,22 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
         \\
         \\export fn entry() usize { return @sizeOf(@typeOf(foo)); }
-    , ".tmp_source.zig:4:19: error: expected type '&[]const u8', found '&const []const u8'");
+    ,
+        ".tmp_source.zig:4:19: error: expected type '&[]const u8', found '&const []const u8'",
+    );
 
     cases.addCase(x: {
-        const tc = cases.create("export collision",
-            \\const foo = @import("foo.zig");
+        const tc = cases.create(
+            "export collision",
+            \\const foo = @import("foo.zig",);
             \\
             \\export fn bar() usize {
             \\    return foo.baz;
             \\}
         ,
             "foo.zig:1:8: error: exported symbol collision: 'bar'",
-            ".tmp_source.zig:3:8: note: other symbol here");
+            ".tmp_source.zig:3:8: note: other symbol here",
+        );
 
         tc.addSourceFile("foo.zig",
             \\export fn bar() void {}
@@ -1942,35 +2471,48 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         break :x tc;
     });
 
-    cases.add("pass non-copyable type by value to function",
+    cases.add(
+        "pass non-copyable type by value to function",
         \\const Point = struct { x: i32, y: i32, };
         \\fn foo(p: Point) void { }
         \\export fn entry() usize { return @sizeOf(@typeOf(foo)); }
-    , ".tmp_source.zig:2:11: error: type 'Point' is not copyable; cannot pass by value");
+    ,
+        ".tmp_source.zig:2:11: error: type 'Point' is not copyable; cannot pass by value",
+    );
 
-    cases.add("implicit cast from array to mutable slice",
+    cases.add(
+        "implicit cast from array to mutable slice",
         \\var global_array: [10]i32 = undefined;
         \\fn foo(param: []i32) void {}
         \\export fn entry() void {
         \\    foo(global_array);
         \\}
-    , ".tmp_source.zig:4:9: error: expected type '[]i32', found '[10]i32'");
+    ,
+        ".tmp_source.zig:4:9: error: expected type '[]i32', found '[10]i32'",
+    );
 
-    cases.add("ptrcast to non-pointer",
+    cases.add(
+        "ptrcast to non-pointer",
         \\export fn entry(a: &i32) usize {
         \\    return @ptrCast(usize, a);
         \\}
-    , ".tmp_source.zig:2:21: error: expected pointer, found 'usize'");
+    ,
+        ".tmp_source.zig:2:21: error: expected pointer, found 'usize'",
+    );
 
-    cases.add("too many error values to cast to small integer",
+    cases.add(
+        "too many error values to cast to small integer",
         \\const Error = error { A, B, C, D, E, F, G, H };
         \\fn foo(e: Error) u2 {
         \\    return u2(e);
         \\}
         \\export fn entry() usize { return @sizeOf(@typeOf(foo)); }
-    , ".tmp_source.zig:3:14: error: too many error values to fit in 'u2'");
+    ,
+        ".tmp_source.zig:3:14: error: too many error values to fit in 'u2'",
+    );
 
-    cases.add("asm at compile time",
+    cases.add(
+        "asm at compile time",
         \\comptime {
         \\    doSomeAsm();
         \\}
@@ -1982,48 +2524,66 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\        \\.set aoeu, derp;
         \\    );
         \\}
-    , ".tmp_source.zig:6:5: error: unable to evaluate constant expression");
+    ,
+        ".tmp_source.zig:6:5: error: unable to evaluate constant expression",
+    );
 
-    cases.add("invalid member of builtin enum",
-        \\const builtin = @import("builtin");
+    cases.add(
+        "invalid member of builtin enum",
+        \\const builtin = @import("builtin",);
         \\export fn entry() void {
         \\    const foo = builtin.Arch.x86;
         \\}
-    , ".tmp_source.zig:3:29: error: container 'Arch' has no member called 'x86'");
+    ,
+        ".tmp_source.zig:3:29: error: container 'Arch' has no member called 'x86'",
+    );
 
-    cases.add("int to ptr of 0 bits",
+    cases.add(
+        "int to ptr of 0 bits",
         \\export fn foo() void {
         \\    var x: usize = 0x1000;
         \\    var y: &void = @intToPtr(&void, x);
         \\}
-    , ".tmp_source.zig:3:31: error: type '&void' has 0 bits and cannot store information");
+    ,
+        ".tmp_source.zig:3:31: error: type '&void' has 0 bits and cannot store information",
+    );
 
-    cases.add("@fieldParentPtr - non struct",
+    cases.add(
+        "@fieldParentPtr - non struct",
         \\const Foo = i32;
         \\export fn foo(a: &i32) &Foo {
         \\    return @fieldParentPtr(Foo, "a", a);
         \\}
-    , ".tmp_source.zig:3:28: error: expected struct type, found 'i32'");
+    ,
+        ".tmp_source.zig:3:28: error: expected struct type, found 'i32'",
+    );
 
-    cases.add("@fieldParentPtr - bad field name",
+    cases.add(
+        "@fieldParentPtr - bad field name",
         \\const Foo = extern struct {
         \\    derp: i32,
         \\};
         \\export fn foo(a: &i32) &Foo {
         \\    return @fieldParentPtr(Foo, "a", a);
         \\}
-    , ".tmp_source.zig:5:33: error: struct 'Foo' has no field 'a'");
+    ,
+        ".tmp_source.zig:5:33: error: struct 'Foo' has no field 'a'",
+    );
 
-    cases.add("@fieldParentPtr - field pointer is not pointer",
+    cases.add(
+        "@fieldParentPtr - field pointer is not pointer",
         \\const Foo = extern struct {
         \\    a: i32,
         \\};
         \\export fn foo(a: i32) &Foo {
         \\    return @fieldParentPtr(Foo, "a", a);
         \\}
-    , ".tmp_source.zig:5:38: error: expected pointer, found 'i32'");
+    ,
+        ".tmp_source.zig:5:38: error: expected pointer, found 'i32'",
+    );
 
-    cases.add("@fieldParentPtr - comptime field ptr not based on struct",
+    cases.add(
+        "@fieldParentPtr - comptime field ptr not based on struct",
         \\const Foo = struct {
         \\    a: i32,
         \\    b: i32,
@@ -2034,9 +2594,12 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    const field_ptr = @intToPtr(&i32, 0x1234);
         \\    const another_foo_ptr = @fieldParentPtr(Foo, "b", field_ptr);
         \\}
-    , ".tmp_source.zig:9:55: error: pointer value not based on parent struct");
+    ,
+        ".tmp_source.zig:9:55: error: pointer value not based on parent struct",
+    );
 
-    cases.add("@fieldParentPtr - comptime wrong field index",
+    cases.add(
+        "@fieldParentPtr - comptime wrong field index",
         \\const Foo = struct {
         \\    a: i32,
         \\    b: i32,
@@ -2046,76 +2609,100 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\comptime {
         \\    const another_foo_ptr = @fieldParentPtr(Foo, "b", &foo.a);
         \\}
-    , ".tmp_source.zig:8:29: error: field 'b' has index 1 but pointer value is index 0 of struct 'Foo'");
+    ,
+        ".tmp_source.zig:8:29: error: field 'b' has index 1 but pointer value is index 0 of struct 'Foo'",
+    );
 
-    cases.add("@offsetOf - non struct",
+    cases.add(
+        "@offsetOf - non struct",
         \\const Foo = i32;
         \\export fn foo() usize {
-        \\    return @offsetOf(Foo, "a");
+        \\    return @offsetOf(Foo, "a",);
         \\}
-    , ".tmp_source.zig:3:22: error: expected struct type, found 'i32'");
+    ,
+        ".tmp_source.zig:3:22: error: expected struct type, found 'i32'",
+    );
 
-    cases.add("@offsetOf - bad field name",
+    cases.add(
+        "@offsetOf - bad field name",
         \\const Foo = struct {
         \\    derp: i32,
         \\};
         \\export fn foo() usize {
-        \\    return @offsetOf(Foo, "a");
+        \\    return @offsetOf(Foo, "a",);
         \\}
-    , ".tmp_source.zig:5:27: error: struct 'Foo' has no field 'a'");
+    ,
+        ".tmp_source.zig:5:27: error: struct 'Foo' has no field 'a'",
+    );
 
-    cases.addExe("missing main fn in executable",
+    cases.addExe(
+        "missing main fn in executable",
         \\
-    , "error: no member named 'main' in '");
+    ,
+        "error: no member named 'main' in '",
+    );
 
-    cases.addExe("private main fn",
+    cases.addExe(
+        "private main fn",
         \\fn main() void {}
     ,
         "error: 'main' is private",
-        ".tmp_source.zig:1:1: note: declared here");
+        ".tmp_source.zig:1:1: note: declared here",
+    );
 
-    cases.add("setting a section on an extern variable",
+    cases.add(
+        "setting a section on an extern variable",
         \\extern var foo: i32 section(".text2");
         \\export fn entry() i32 {
         \\    return foo;
         \\}
     ,
-        ".tmp_source.zig:1:29: error: cannot set section of external variable 'foo'");
+        ".tmp_source.zig:1:29: error: cannot set section of external variable 'foo'",
+    );
 
-    cases.add("setting a section on a local variable",
+    cases.add(
+        "setting a section on a local variable",
         \\export fn entry() i32 {
         \\    var foo: i32 section(".text2") = 1234;
         \\    return foo;
         \\}
     ,
-        ".tmp_source.zig:2:26: error: cannot set section of local variable 'foo'");
+        ".tmp_source.zig:2:26: error: cannot set section of local variable 'foo'",
+    );
 
-    cases.add("setting a section on an extern fn",
+    cases.add(
+        "setting a section on an extern fn",
         \\extern fn foo() section(".text2") void;
         \\export fn entry() void {
         \\    foo();
         \\}
     ,
-        ".tmp_source.zig:1:25: error: cannot set section of external function 'foo'");
+        ".tmp_source.zig:1:25: error: cannot set section of external function 'foo'",
+    );
 
-    cases.add("returning address of local variable - simple",
+    cases.add(
+        "returning address of local variable - simple",
         \\export fn foo() &i32 {
         \\    var a: i32 = undefined;
         \\    return &a;
         \\}
     ,
-        ".tmp_source.zig:3:13: error: function returns address of local variable");
+        ".tmp_source.zig:3:13: error: function returns address of local variable",
+    );
 
-    cases.add("returning address of local variable - phi",
+    cases.add(
+        "returning address of local variable - phi",
         \\export fn foo(c: bool) &i32 {
         \\    var a: i32 = undefined;
         \\    var b: i32 = undefined;
         \\    return if (c) &a else &b;
         \\}
     ,
-        ".tmp_source.zig:4:12: error: function returns address of local variable");
+        ".tmp_source.zig:4:12: error: function returns address of local variable",
+    );
 
-    cases.add("inner struct member shadowing outer struct member",
+    cases.add(
+        "inner struct member shadowing outer struct member",
         \\fn A() type {
         \\    return struct {
         \\        b: B(),
@@ -2137,57 +2724,71 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
     ,
         ".tmp_source.zig:9:17: error: redefinition of 'Self'",
-        ".tmp_source.zig:5:9: note: previous definition is here");
+        ".tmp_source.zig:5:9: note: previous definition is here",
+    );
 
-    cases.add("while expected bool, got nullable",
+    cases.add(
+        "while expected bool, got nullable",
         \\export fn foo() void {
         \\    while (bar()) {}
         \\}
         \\fn bar() ?i32 { return 1; }
     ,
-        ".tmp_source.zig:2:15: error: expected type 'bool', found '?i32'");
+        ".tmp_source.zig:2:15: error: expected type 'bool', found '?i32'",
+    );
 
-    cases.add("while expected bool, got error union",
+    cases.add(
+        "while expected bool, got error union",
         \\export fn foo() void {
         \\    while (bar()) {}
         \\}
         \\fn bar() error!i32 { return 1; }
     ,
-        ".tmp_source.zig:2:15: error: expected type 'bool', found 'error!i32'");
+        ".tmp_source.zig:2:15: error: expected type 'bool', found 'error!i32'",
+    );
 
-    cases.add("while expected nullable, got bool",
+    cases.add(
+        "while expected nullable, got bool",
         \\export fn foo() void {
         \\    while (bar()) |x| {}
         \\}
         \\fn bar() bool { return true; }
     ,
-        ".tmp_source.zig:2:15: error: expected nullable type, found 'bool'");
+        ".tmp_source.zig:2:15: error: expected nullable type, found 'bool'",
+    );
 
-    cases.add("while expected nullable, got error union",
+    cases.add(
+        "while expected nullable, got error union",
         \\export fn foo() void {
         \\    while (bar()) |x| {}
         \\}
         \\fn bar() error!i32 { return 1; }
     ,
-        ".tmp_source.zig:2:15: error: expected nullable type, found 'error!i32'");
+        ".tmp_source.zig:2:15: error: expected nullable type, found 'error!i32'",
+    );
 
-    cases.add("while expected error union, got bool",
+    cases.add(
+        "while expected error union, got bool",
         \\export fn foo() void {
         \\    while (bar()) |x| {} else |err| {}
         \\}
         \\fn bar() bool { return true; }
     ,
-        ".tmp_source.zig:2:15: error: expected error union type, found 'bool'");
+        ".tmp_source.zig:2:15: error: expected error union type, found 'bool'",
+    );
 
-    cases.add("while expected error union, got nullable",
+    cases.add(
+        "while expected error union, got nullable",
         \\export fn foo() void {
         \\    while (bar()) |x| {} else |err| {}
         \\}
         \\fn bar() ?i32 { return 1; }
     ,
-        ".tmp_source.zig:2:15: error: expected error union type, found '?i32'");
+        ".tmp_source.zig:2:15: error: expected error union type, found '?i32'",
+    );
 
-    cases.add("inline fn calls itself indirectly",
+    cases.add(
+        "inline fn calls itself indirectly",
         \\export fn foo() void {
         \\    bar();
         \\}
@@ -2201,91 +2802,113 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
         \\extern fn quux() void;
     ,
-        ".tmp_source.zig:4:8: error: unable to inline function");
+        ".tmp_source.zig:4:8: error: unable to inline function",
+    );
 
-    cases.add("save reference to inline function",
+    cases.add(
+        "save reference to inline function",
         \\export fn foo() void {
         \\    quux(@ptrToInt(bar));
         \\}
         \\inline fn bar() void { }
         \\extern fn quux(usize) void;
     ,
-        ".tmp_source.zig:4:8: error: unable to inline function");
+        ".tmp_source.zig:4:8: error: unable to inline function",
+    );
 
-    cases.add("signed integer division",
+    cases.add(
+        "signed integer division",
         \\export fn foo(a: i32, b: i32) i32 {
         \\    return a / b;
         \\}
     ,
-        ".tmp_source.zig:2:14: error: division with 'i32' and 'i32': signed integers must use @divTrunc, @divFloor, or @divExact");
+        ".tmp_source.zig:2:14: error: division with 'i32' and 'i32': signed integers must use @divTrunc, @divFloor, or @divExact",
+    );
 
-    cases.add("signed integer remainder division",
+    cases.add(
+        "signed integer remainder division",
         \\export fn foo(a: i32, b: i32) i32 {
         \\    return a % b;
         \\}
     ,
-        ".tmp_source.zig:2:14: error: remainder division with 'i32' and 'i32': signed integers and floats must use @rem or @mod");
+        ".tmp_source.zig:2:14: error: remainder division with 'i32' and 'i32': signed integers and floats must use @rem or @mod",
+    );
 
-    cases.add("cast negative value to unsigned integer",
+    cases.add(
+        "cast negative value to unsigned integer",
         \\comptime {
         \\    const value: i32 = -1;
         \\    const unsigned = u32(value);
         \\}
     ,
-        ".tmp_source.zig:3:25: error: attempt to cast negative value to unsigned integer");
+        ".tmp_source.zig:3:25: error: attempt to cast negative value to unsigned integer",
+    );
 
-    cases.add("compile-time division by zero",
+    cases.add(
+        "compile-time division by zero",
         \\comptime {
         \\    const a: i32 = 1;
         \\    const b: i32 = 0;
         \\    const c = a / b;
         \\}
     ,
-        ".tmp_source.zig:4:17: error: division by zero");
+        ".tmp_source.zig:4:17: error: division by zero",
+    );
 
-    cases.add("compile-time remainder division by zero",
+    cases.add(
+        "compile-time remainder division by zero",
         \\comptime {
         \\    const a: i32 = 1;
         \\    const b: i32 = 0;
         \\    const c = a % b;
         \\}
     ,
-        ".tmp_source.zig:4:17: error: division by zero");
+        ".tmp_source.zig:4:17: error: division by zero",
+    );
 
-    cases.add("compile-time integer cast truncates bits",
+    cases.add(
+        "compile-time integer cast truncates bits",
         \\comptime {
         \\    const spartan_count: u16 = 300;
         \\    const byte = u8(spartan_count);
         \\}
     ,
-        ".tmp_source.zig:3:20: error: cast from 'u16' to 'u8' truncates bits");
+        ".tmp_source.zig:3:20: error: cast from 'u16' to 'u8' truncates bits",
+    );
 
-    cases.add("@setRuntimeSafety twice for same scope",
+    cases.add(
+        "@setRuntimeSafety twice for same scope",
         \\export fn foo() void {
         \\    @setRuntimeSafety(false);
         \\    @setRuntimeSafety(false);
         \\}
     ,
         ".tmp_source.zig:3:5: error: runtime safety set twice for same scope",
-        ".tmp_source.zig:2:5: note: first set here");
+        ".tmp_source.zig:2:5: note: first set here",
+    );
 
-    cases.add("@setFloatMode twice for same scope",
+    cases.add(
+        "@setFloatMode twice for same scope",
         \\export fn foo() void {
         \\    @setFloatMode(this, @import("builtin").FloatMode.Optimized);
         \\    @setFloatMode(this, @import("builtin").FloatMode.Optimized);
         \\}
     ,
         ".tmp_source.zig:3:5: error: float mode set twice for same scope",
-        ".tmp_source.zig:2:5: note: first set here");
+        ".tmp_source.zig:2:5: note: first set here",
+    );
 
-    cases.add("array access of type",
+    cases.add(
+        "array access of type",
         \\export fn foo() void {
         \\    var b: u8[40] = undefined;
         \\}
     ,
-        ".tmp_source.zig:2:14: error: array access of non-array type 'type'");
+        ".tmp_source.zig:2:14: error: array access of non-array type 'type'",
+    );
 
-    cases.add("cannot break out of defer expression",
+    cases.add(
+        "cannot break out of defer expression",
         \\export fn foo() void {
         \\    while (true) {
         \\        defer {
@@ -2294,9 +2917,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    }
         \\}
     ,
-        ".tmp_source.zig:4:13: error: cannot break out of defer expression");
+        ".tmp_source.zig:4:13: error: cannot break out of defer expression",
+    );
 
-    cases.add("cannot continue out of defer expression",
+    cases.add(
+        "cannot continue out of defer expression",
         \\export fn foo() void {
         \\    while (true) {
         \\        defer {
@@ -2305,9 +2930,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    }
         \\}
     ,
-        ".tmp_source.zig:4:13: error: cannot continue out of defer expression");
+        ".tmp_source.zig:4:13: error: cannot continue out of defer expression",
+    );
 
-    cases.add("calling a var args function only known at runtime",
+    cases.add(
+        "calling a var args function only known at runtime",
         \\var foos = []fn(...) void { foo1, foo2 };
         \\
         \\fn foo1(args: ...) void {}
@@ -2317,9 +2944,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    foos[0]();
         \\}
     ,
-        ".tmp_source.zig:7:9: error: calling a generic function requires compile-time known function value");
+        ".tmp_source.zig:7:9: error: calling a generic function requires compile-time known function value",
+    );
 
-    cases.add("calling a generic function only known at runtime",
+    cases.add(
+        "calling a generic function only known at runtime",
         \\var foos = []fn(var) void { foo1, foo2 };
         \\
         \\fn foo1(arg: var) void {}
@@ -2329,10 +2958,12 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    foos[0](true);
         \\}
     ,
-        ".tmp_source.zig:7:9: error: calling a generic function requires compile-time known function value");
+        ".tmp_source.zig:7:9: error: calling a generic function requires compile-time known function value",
+    );
 
-    cases.add("@compileError shows traceback of references that caused it",
-        \\const foo = @compileError("aoeu");
+    cases.add(
+        "@compileError shows traceback of references that caused it",
+        \\const foo = @compileError("aoeu",);
         \\
         \\const bar = baz + foo;
         \\const baz = 1;
@@ -2343,9 +2974,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
     ,
         ".tmp_source.zig:1:13: error: aoeu",
         ".tmp_source.zig:3:19: note: referenced here",
-        ".tmp_source.zig:7:12: note: referenced here");
+        ".tmp_source.zig:7:12: note: referenced here",
+    );
 
-    cases.add("instantiating an undefined value for an invalid struct that contains itself",
+    cases.add(
+        "instantiating an undefined value for an invalid struct that contains itself",
         \\const Foo = struct {
         \\    x: Foo,
         \\};
@@ -2356,73 +2989,93 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    return @sizeOf(@typeOf(foo.x));
         \\}
     ,
-        ".tmp_source.zig:1:13: error: struct 'Foo' contains itself");
+        ".tmp_source.zig:1:13: error: struct 'Foo' contains itself",
+    );
 
-    cases.add("float literal too large error",
+    cases.add(
+        "float literal too large error",
         \\comptime {
         \\    const a = 0x1.0p16384;
         \\}
     ,
-        ".tmp_source.zig:2:15: error: float literal out of range of any type");
+        ".tmp_source.zig:2:15: error: float literal out of range of any type",
+    );
 
-    cases.add("float literal too small error (denormal)",
+    cases.add(
+        "float literal too small error (denormal)",
         \\comptime {
         \\    const a = 0x1.0p-16384;
         \\}
     ,
-        ".tmp_source.zig:2:15: error: float literal out of range of any type");
+        ".tmp_source.zig:2:15: error: float literal out of range of any type",
+    );
 
-    cases.add("explicit cast float literal to integer when there is a fraction component",
+    cases.add(
+        "explicit cast float literal to integer when there is a fraction component",
         \\export fn entry() i32 {
         \\    return i32(12.34);
         \\}
     ,
-        ".tmp_source.zig:2:16: error: fractional component prevents float value 12.340000 from being casted to type 'i32'");
+        ".tmp_source.zig:2:16: error: fractional component prevents float value 12.340000 from being casted to type 'i32'",
+    );
 
-    cases.add("non pointer given to @ptrToInt",
+    cases.add(
+        "non pointer given to @ptrToInt",
         \\export fn entry(x: i32) usize {
         \\    return @ptrToInt(x);
         \\}
     ,
-        ".tmp_source.zig:2:22: error: expected pointer, found 'i32'");
+        ".tmp_source.zig:2:22: error: expected pointer, found 'i32'",
+    );
 
-    cases.add("@shlExact shifts out 1 bits",
+    cases.add(
+        "@shlExact shifts out 1 bits",
         \\comptime {
         \\    const x = @shlExact(u8(0b01010101), 2);
         \\}
     ,
-        ".tmp_source.zig:2:15: error: operation caused overflow");
+        ".tmp_source.zig:2:15: error: operation caused overflow",
+    );
 
-    cases.add("@shrExact shifts out 1 bits",
+    cases.add(
+        "@shrExact shifts out 1 bits",
         \\comptime {
         \\    const x = @shrExact(u8(0b10101010), 2);
         \\}
     ,
-        ".tmp_source.zig:2:15: error: exact shift shifted out 1 bits");
+        ".tmp_source.zig:2:15: error: exact shift shifted out 1 bits",
+    );
 
-    cases.add("shifting without int type or comptime known",
+    cases.add(
+        "shifting without int type or comptime known",
         \\export fn entry(x: u8) u8 {
         \\    return 0x11 << x;
         \\}
     ,
-        ".tmp_source.zig:2:17: error: LHS of shift must be an integer type, or RHS must be compile-time known");
+        ".tmp_source.zig:2:17: error: LHS of shift must be an integer type, or RHS must be compile-time known",
+    );
 
-    cases.add("shifting RHS is log2 of LHS int bit width",
+    cases.add(
+        "shifting RHS is log2 of LHS int bit width",
         \\export fn entry(x: u8, y: u8) u8 {
         \\    return x << y;
         \\}
     ,
-        ".tmp_source.zig:2:17: error: expected type 'u3', found 'u8'");
+        ".tmp_source.zig:2:17: error: expected type 'u3', found 'u8'",
+    );
 
-    cases.add("globally shadowing a primitive type",
+    cases.add(
+        "globally shadowing a primitive type",
         \\const u16 = @intType(false, 8);
         \\export fn entry() void {
         \\    const a: u16 = 300;
         \\}
     ,
-        ".tmp_source.zig:1:1: error: declaration shadows type 'u16'");
+        ".tmp_source.zig:1:1: error: declaration shadows type 'u16'",
+    );
 
-    cases.add("implicitly increasing pointer alignment",
+    cases.add(
+        "implicitly increasing pointer alignment",
         \\const Foo = packed struct {
         \\    a: u8,
         \\    b: u32,
@@ -2437,9 +3090,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    x.* += 1;
         \\}
     ,
-        ".tmp_source.zig:8:13: error: expected type '&u32', found '&align(1) u32'");
+        ".tmp_source.zig:8:13: error: expected type '&u32', found '&align(1) u32'",
+    );
 
-    cases.add("implicitly increasing slice alignment",
+    cases.add(
+        "implicitly increasing slice alignment",
         \\const Foo = packed struct {
         \\    a: u8,
         \\    b: u32,
@@ -2455,9 +3110,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    x[0] += 1;
         \\}
     ,
-        ".tmp_source.zig:9:17: error: expected type '[]u32', found '[]align(1) u32'");
+        ".tmp_source.zig:9:17: error: expected type '[]u32', found '[]align(1) u32'",
+    );
 
-    cases.add("increase pointer alignment in @ptrCast",
+    cases.add(
+        "increase pointer alignment in @ptrCast",
         \\export fn entry() u32 {
         \\    var bytes: [4]u8 = []u8{0x01, 0x02, 0x03, 0x04};
         \\    const ptr = @ptrCast(&u32, &bytes[0]);
@@ -2466,9 +3123,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
     ,
         ".tmp_source.zig:3:17: error: cast increases pointer alignment",
         ".tmp_source.zig:3:38: note: '&u8' has alignment 1",
-        ".tmp_source.zig:3:27: note: '&u32' has alignment 4");
+        ".tmp_source.zig:3:27: note: '&u32' has alignment 4",
+    );
 
-    cases.add("increase pointer alignment in slice resize",
+    cases.add(
+        "increase pointer alignment in slice resize",
         \\export fn entry() u32 {
         \\    var bytes = []u8{0x01, 0x02, 0x03, 0x04};
         \\    return ([]u32)(bytes[0..])[0];
@@ -2476,16 +3135,20 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
     ,
         ".tmp_source.zig:3:19: error: cast increases pointer alignment",
         ".tmp_source.zig:3:19: note: '[]u8' has alignment 1",
-        ".tmp_source.zig:3:19: note: '[]u32' has alignment 4");
+        ".tmp_source.zig:3:19: note: '[]u32' has alignment 4",
+    );
 
-    cases.add("@alignCast expects pointer or slice",
+    cases.add(
+        "@alignCast expects pointer or slice",
         \\export fn entry() void {
         \\    @alignCast(4, u32(3));
         \\}
     ,
-        ".tmp_source.zig:2:22: error: expected pointer or slice, found 'u32'");
+        ".tmp_source.zig:2:22: error: expected pointer or slice, found 'u32'",
+    );
 
-    cases.add("passing an under-aligned function pointer",
+    cases.add(
+        "passing an under-aligned function pointer",
         \\export fn entry() void {
         \\    testImplicitlyDecreaseFnAlign(alignedSmall, 1234);
         \\}
@@ -2494,9 +3157,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
         \\fn alignedSmall() align(4) i32 { return 1234; }
     ,
-        ".tmp_source.zig:2:35: error: expected type 'fn() align(8) i32', found 'fn() align(4) i32'");
+        ".tmp_source.zig:2:35: error: expected type 'fn() align(8) i32', found 'fn() align(4) i32'",
+    );
 
-    cases.add("passing a not-aligned-enough pointer to cmpxchg",
+    cases.add(
+        "passing a not-aligned-enough pointer to cmpxchg",
         \\const AtomicOrder = @import("builtin").AtomicOrder;
         \\export fn entry() bool {
         \\    var x: i32 align(1) = 1234;
@@ -2504,16 +3169,20 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    return x == 5678;
         \\}
     ,
-        ".tmp_source.zig:4:32: error: expected type '&i32', found '&align(1) i32'");
+        ".tmp_source.zig:4:32: error: expected type '&i32', found '&align(1) i32'",
+    );
 
-    cases.add("wrong size to an array literal",
+    cases.add(
+        "wrong size to an array literal",
         \\comptime {
         \\    const array = [2]u8{1, 2, 3};
         \\}
     ,
-        ".tmp_source.zig:2:24: error: expected [2]u8 literal, found [3]u8 literal");
+        ".tmp_source.zig:2:24: error: expected [2]u8 literal, found [3]u8 literal",
+    );
 
-    cases.add("@setEvalBranchQuota in non-root comptime execution context",
+    cases.add(
+        "@setEvalBranchQuota in non-root comptime execution context",
         \\comptime {
         \\    foo();
         \\}
@@ -2523,9 +3192,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
     ,
         ".tmp_source.zig:5:5: error: @setEvalBranchQuota must be called from the top of the comptime stack",
         ".tmp_source.zig:2:8: note: called from here",
-        ".tmp_source.zig:1:10: note: called from here");
+        ".tmp_source.zig:1:10: note: called from here",
+    );
 
-    cases.add("wrong pointer implicitly casted to pointer to @OpaqueType()",
+    cases.add(
+        "wrong pointer implicitly casted to pointer to @OpaqueType()",
         \\const Derp = @OpaqueType();
         \\extern fn bar(d: &Derp) void;
         \\export fn foo() void {
@@ -2533,9 +3204,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    bar(@ptrCast(&c_void, &x));
         \\}
     ,
-        ".tmp_source.zig:5:9: error: expected type '&Derp', found '&c_void'");
+        ".tmp_source.zig:5:9: error: expected type '&Derp', found '&c_void'",
+    );
 
-    cases.add("non-const variables of things that require const variables",
+    cases.add(
+        "non-const variables of things that require const variables",
         \\const Opaque = @OpaqueType();
         \\
         \\export fn entry(opaque: &Opaque) void {
@@ -2549,7 +3222,7 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\   var e = null;
         \\   var f = opaque.*;
         \\   var g = i32;
-        \\   var h = @import("std");
+        \\   var h = @import("std",);
         \\   var i = (Foo {}).bar;
         \\
         \\   var z: noreturn = return;
@@ -2569,26 +3242,32 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         ".tmp_source.zig:13:4: error: variable of type 'type' must be const or comptime",
         ".tmp_source.zig:14:4: error: variable of type '(namespace)' must be const or comptime",
         ".tmp_source.zig:15:4: error: variable of type '(bound fn(&const Foo) void)' must be const or comptime",
-        ".tmp_source.zig:17:4: error: unreachable code");
+        ".tmp_source.zig:17:4: error: unreachable code",
+    );
 
-    cases.add("wrong types given to atomic order args in cmpxchg",
+    cases.add(
+        "wrong types given to atomic order args in cmpxchg",
         \\export fn entry() void {
         \\    var x: i32 = 1234;
         \\    while (!@cmpxchgWeak(i32, &x, 1234, 5678, u32(1234), u32(1234))) {}
         \\}
     ,
-        ".tmp_source.zig:3:50: error: expected type 'AtomicOrder', found 'u32'");
+        ".tmp_source.zig:3:50: error: expected type 'AtomicOrder', found 'u32'",
+    );
 
-    cases.add("wrong types given to @export",
+    cases.add(
+        "wrong types given to @export",
         \\extern fn entry() void { }
         \\comptime {
         \\    @export("entry", entry, u32(1234));
         \\}
     ,
-        ".tmp_source.zig:3:32: error: expected type 'GlobalLinkage', found 'u32'");
+        ".tmp_source.zig:3:32: error: expected type 'GlobalLinkage', found 'u32'",
+    );
 
-    cases.add("struct with invalid field",
-        \\const std = @import("std");
+    cases.add(
+        "struct with invalid field",
+        \\const std = @import("std",);
         \\const Allocator = std.mem.Allocator;
         \\const ArrayList = std.ArrayList;
         \\
@@ -2612,23 +3291,29 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    };
         \\}
     ,
-        ".tmp_source.zig:14:17: error: use of undeclared identifier 'HeaderValue'");
+        ".tmp_source.zig:14:17: error: use of undeclared identifier 'HeaderValue'",
+    );
 
-    cases.add("@setAlignStack outside function",
+    cases.add(
+        "@setAlignStack outside function",
         \\comptime {
         \\    @setAlignStack(16);
         \\}
     ,
-        ".tmp_source.zig:2:5: error: @setAlignStack outside function");
+        ".tmp_source.zig:2:5: error: @setAlignStack outside function",
+    );
 
-    cases.add("@setAlignStack in naked function",
+    cases.add(
+        "@setAlignStack in naked function",
         \\export nakedcc fn entry() void {
         \\    @setAlignStack(16);
         \\}
     ,
-        ".tmp_source.zig:2:5: error: @setAlignStack in naked function");
+        ".tmp_source.zig:2:5: error: @setAlignStack in naked function",
+    );
 
-    cases.add("@setAlignStack in inline function",
+    cases.add(
+        "@setAlignStack in inline function",
         \\export fn entry() void {
         \\    foo();
         \\}
@@ -2636,25 +3321,31 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    @setAlignStack(16);
         \\}
     ,
-        ".tmp_source.zig:5:5: error: @setAlignStack in inline function");
+        ".tmp_source.zig:5:5: error: @setAlignStack in inline function",
+    );
 
-    cases.add("@setAlignStack set twice",
+    cases.add(
+        "@setAlignStack set twice",
         \\export fn entry() void {
         \\    @setAlignStack(16);
         \\    @setAlignStack(16);
         \\}
     ,
         ".tmp_source.zig:3:5: error: alignstack set twice",
-        ".tmp_source.zig:2:5: note: first set here");
+        ".tmp_source.zig:2:5: note: first set here",
+    );
 
-    cases.add("@setAlignStack too big",
+    cases.add(
+        "@setAlignStack too big",
         \\export fn entry() void {
         \\    @setAlignStack(511 + 1);
         \\}
     ,
-        ".tmp_source.zig:2:5: error: attempt to @setAlignStack(512); maximum is 256");
+        ".tmp_source.zig:2:5: error: attempt to @setAlignStack(512); maximum is 256",
+    );
 
-    cases.add("storing runtime value in compile time variable then using it",
+    cases.add(
+        "storing runtime value in compile time variable then using it",
         \\const Mode = @import("builtin").Mode;
         \\
         \\fn Free(comptime filename: []const u8) TestCase {
@@ -2697,9 +3388,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    }
         \\}
     ,
-        ".tmp_source.zig:37:16: error: cannot store runtime value in compile time variable");
+        ".tmp_source.zig:37:16: error: cannot store runtime value in compile time variable",
+    );
 
-    cases.add("field access of opaque type",
+    cases.add(
+        "field access of opaque type",
         \\const MyType = @OpaqueType();
         \\
         \\export fn entry() bool {
@@ -2711,120 +3404,148 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    return x.blah;
         \\}
     ,
-        ".tmp_source.zig:9:13: error: type '&MyType' does not support field access");
+        ".tmp_source.zig:9:13: error: type '&MyType' does not support field access",
+    );
 
-    cases.add("carriage return special case",
+    cases.add(
+        "carriage return special case",
         "fn test() bool {\r\n" ++
-        "   true\r\n" ++
-        "}\r\n"
-    ,
-        ".tmp_source.zig:1:17: error: invalid carriage return, only '\\n' line endings are supported");
-
-    cases.add("non-printable invalid character",
-        "\xff\xfe" ++
-        \\fn test() bool {\r
-        \\    true\r
-        \\}
-    ,
-        ".tmp_source.zig:1:1: error: invalid character: '\\xff'");
+            "   true\r\n" ++
+            "}\r\n",
+        ".tmp_source.zig:1:17: error: invalid carriage return, only '\\n' line endings are supported",
+    );
+
+    cases.add(
+        "non-printable invalid character",
+        "\xff\xfe" ++            
+            \\fn test() bool {\r
+            \\    true\r
+            \\}
+        ,
+        ".tmp_source.zig:1:1: error: invalid character: '\\xff'",
+    );
 
-    cases.add("non-printable invalid character with escape alternative",
+    cases.add(
+        "non-printable invalid character with escape alternative",
         "fn test() bool {\n" ++
-        "\ttrue\n" ++
-        "}\n"
-    ,
-        ".tmp_source.zig:2:1: error: invalid character: '\\t'");
+            "\ttrue\n" ++
+            "}\n",
+        ".tmp_source.zig:2:1: error: invalid character: '\\t'",
+    );
 
-    cases.add("@ArgType given non function parameter",
+    cases.add(
+        "@ArgType given non function parameter",
         \\comptime {
         \\    _ = @ArgType(i32, 3);
         \\}
     ,
-        ".tmp_source.zig:2:18: error: expected function, found 'i32'");
+        ".tmp_source.zig:2:18: error: expected function, found 'i32'",
+    );
 
-    cases.add("@ArgType arg index out of bounds",
+    cases.add(
+        "@ArgType arg index out of bounds",
         \\comptime {
         \\    _ = @ArgType(@typeOf(add), 2);
         \\}
         \\fn add(a: i32, b: i32) i32 { return a + b; }
     ,
-        ".tmp_source.zig:2:32: error: arg index 2 out of bounds; 'fn(i32, i32) i32' has 2 arguments");
+        ".tmp_source.zig:2:32: error: arg index 2 out of bounds; 'fn(i32, i32) i32' has 2 arguments",
+    );
 
-    cases.add("@memberType on unsupported type",
+    cases.add(
+        "@memberType on unsupported type",
         \\comptime {
         \\    _ = @memberType(i32, 0);
         \\}
     ,
-        ".tmp_source.zig:2:21: error: type 'i32' does not support @memberType");
+        ".tmp_source.zig:2:21: error: type 'i32' does not support @memberType",
+    );
 
-    cases.add("@memberType on enum",
+    cases.add(
+        "@memberType on enum",
         \\comptime {
         \\    _ = @memberType(Foo, 0);
         \\}
         \\const Foo = enum {A,};
     ,
-        ".tmp_source.zig:2:21: error: type 'Foo' does not support @memberType");
+        ".tmp_source.zig:2:21: error: type 'Foo' does not support @memberType",
+    );
 
-    cases.add("@memberType struct out of bounds",
+    cases.add(
+        "@memberType struct out of bounds",
         \\comptime {
         \\    _ = @memberType(Foo, 0);
         \\}
         \\const Foo = struct {};
     ,
-        ".tmp_source.zig:2:26: error: member index 0 out of bounds; 'Foo' has 0 members");
+        ".tmp_source.zig:2:26: error: member index 0 out of bounds; 'Foo' has 0 members",
+    );
 
-    cases.add("@memberType union out of bounds",
+    cases.add(
+        "@memberType union out of bounds",
         \\comptime {
         \\    _ = @memberType(Foo, 1);
         \\}
         \\const Foo = union {A: void,};
     ,
-        ".tmp_source.zig:2:26: error: member index 1 out of bounds; 'Foo' has 1 members");
+        ".tmp_source.zig:2:26: error: member index 1 out of bounds; 'Foo' has 1 members",
+    );
 
-    cases.add("@memberName on unsupported type",
+    cases.add(
+        "@memberName on unsupported type",
         \\comptime {
         \\    _ = @memberName(i32, 0);
         \\}
     ,
-        ".tmp_source.zig:2:21: error: type 'i32' does not support @memberName");
+        ".tmp_source.zig:2:21: error: type 'i32' does not support @memberName",
+    );
 
-    cases.add("@memberName struct out of bounds",
+    cases.add(
+        "@memberName struct out of bounds",
         \\comptime {
         \\    _ = @memberName(Foo, 0);
         \\}
         \\const Foo = struct {};
     ,
-        ".tmp_source.zig:2:26: error: member index 0 out of bounds; 'Foo' has 0 members");
+        ".tmp_source.zig:2:26: error: member index 0 out of bounds; 'Foo' has 0 members",
+    );
 
-    cases.add("@memberName enum out of bounds",
+    cases.add(
+        "@memberName enum out of bounds",
         \\comptime {
         \\    _ = @memberName(Foo, 1);
         \\}
         \\const Foo = enum {A,};
     ,
-        ".tmp_source.zig:2:26: error: member index 1 out of bounds; 'Foo' has 1 members");
+        ".tmp_source.zig:2:26: error: member index 1 out of bounds; 'Foo' has 1 members",
+    );
 
-    cases.add("@memberName union out of bounds",
+    cases.add(
+        "@memberName union out of bounds",
         \\comptime {
         \\    _ = @memberName(Foo, 1);
         \\}
         \\const Foo = union {A:i32,};
     ,
-        ".tmp_source.zig:2:26: error: member index 1 out of bounds; 'Foo' has 1 members");
+        ".tmp_source.zig:2:26: error: member index 1 out of bounds; 'Foo' has 1 members",
+    );
 
-    cases.add("calling var args extern function, passing array instead of pointer",
+    cases.add(
+        "calling var args extern function, passing array instead of pointer",
         \\export fn entry() void {
-        \\    foo("hello");
+        \\    foo("hello",);
         \\}
         \\pub extern fn foo(format: &const u8, ...) void;
     ,
-        ".tmp_source.zig:2:9: error: expected type '&const u8', found '[5]u8'");
+        ".tmp_source.zig:2:9: error: expected type '&const u8', found '[5]u8'",
+    );
 
-    cases.add("constant inside comptime function has compile error",
+    cases.add(
+        "constant inside comptime function has compile error",
         \\const ContextAllocator = MemoryPool(usize);
         \\
         \\pub fn MemoryPool(comptime T: type) type {
-        \\    const free_list_t = @compileError("aoeu");
+        \\    const free_list_t = @compileError("aoeu",);
         \\
         \\    return struct {
         \\        free_list: free_list_t,
@@ -2837,9 +3558,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
     ,
         ".tmp_source.zig:4:25: error: aoeu",
         ".tmp_source.zig:1:36: note: called from here",
-        ".tmp_source.zig:12:20: note: referenced here");
+        ".tmp_source.zig:12:20: note: referenced here",
+    );
 
-    cases.add("specify enum tag type that is too small",
+    cases.add(
+        "specify enum tag type that is too small",
         \\const Small = enum (u2) {
         \\    One,
         \\    Two,
@@ -2852,9 +3575,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    var x = Small.One;
         \\}
     ,
-        ".tmp_source.zig:1:20: error: 'u2' too small to hold all bits; must be at least 'u3'");
+        ".tmp_source.zig:1:20: error: 'u2' too small to hold all bits; must be at least 'u3'",
+    );
 
-    cases.add("specify non-integer enum tag type",
+    cases.add(
+        "specify non-integer enum tag type",
         \\const Small = enum (f32) {
         \\    One,
         \\    Two,
@@ -2865,9 +3590,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    var x = Small.One;
         \\}
     ,
-        ".tmp_source.zig:1:20: error: expected integer, found 'f32'");
+        ".tmp_source.zig:1:20: error: expected integer, found 'f32'",
+    );
 
-    cases.add("implicitly casting enum to tag type",
+    cases.add(
+        "implicitly casting enum to tag type",
         \\const Small = enum(u2) {
         \\    One,
         \\    Two,
@@ -2879,9 +3606,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    var x: u2 = Small.Two;
         \\}
     ,
-        ".tmp_source.zig:9:22: error: expected type 'u2', found 'Small'");
+        ".tmp_source.zig:9:22: error: expected type 'u2', found 'Small'",
+    );
 
-    cases.add("explicitly casting enum to non tag type",
+    cases.add(
+        "explicitly casting enum to non tag type",
         \\const Small = enum(u2) {
         \\    One,
         \\    Two,
@@ -2893,9 +3622,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    var x = u3(Small.Two);
         \\}
     ,
-        ".tmp_source.zig:9:15: error: enum to integer cast to 'u3' instead of its tag type, 'u2'");
+        ".tmp_source.zig:9:15: error: enum to integer cast to 'u3' instead of its tag type, 'u2'",
+    );
 
-    cases.add("explicitly casting non tag type to enum",
+    cases.add(
+        "explicitly casting non tag type to enum",
         \\const Small = enum(u2) {
         \\    One,
         \\    Two,
@@ -2908,9 +3639,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    var x = Small(y);
         \\}
     ,
-        ".tmp_source.zig:10:18: error: integer to enum cast from 'u3' instead of its tag type, 'u2'");
+        ".tmp_source.zig:10:18: error: integer to enum cast from 'u3' instead of its tag type, 'u2'",
+    );
 
-    cases.add("non unsigned integer enum tag type",
+    cases.add(
+        "non unsigned integer enum tag type",
         \\const Small = enum(i2) {
         \\    One,
         \\    Two,
@@ -2922,9 +3655,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    var y = Small.Two;
         \\}
     ,
-        ".tmp_source.zig:1:19: error: expected unsigned integer, found 'i2'");
+        ".tmp_source.zig:1:19: error: expected unsigned integer, found 'i2'",
+    );
 
-    cases.add("struct fields with value assignments",
+    cases.add(
+        "struct fields with value assignments",
         \\const MultipleChoice = struct {
         \\    A: i32 = 20,
         \\};
@@ -2932,9 +3667,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\        var x: MultipleChoice = undefined;
         \\}
     ,
-        ".tmp_source.zig:2:14: error: enums, not structs, support field assignment");
+        ".tmp_source.zig:2:14: error: enums, not structs, support field assignment",
+    );
 
-    cases.add("union fields with value assignments",
+    cases.add(
+        "union fields with value assignments",
         \\const MultipleChoice = union {
         \\    A: i32 = 20,
         \\};
@@ -2943,25 +3680,31 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
     ,
         ".tmp_source.zig:2:14: error: non-enum union field assignment",
-        ".tmp_source.zig:1:24: note: consider 'union(enum)' here");
+        ".tmp_source.zig:1:24: note: consider 'union(enum)' here",
+    );
 
-    cases.add("enum with 0 fields",
+    cases.add(
+        "enum with 0 fields",
         \\const Foo = enum {};
         \\export fn entry() usize {
         \\    return @sizeOf(Foo);
         \\}
     ,
-        ".tmp_source.zig:1:13: error: enums must have 1 or more fields");
+        ".tmp_source.zig:1:13: error: enums must have 1 or more fields",
+    );
 
-    cases.add("union with 0 fields",
+    cases.add(
+        "union with 0 fields",
         \\const Foo = union {};
         \\export fn entry() usize {
         \\    return @sizeOf(Foo);
         \\}
     ,
-        ".tmp_source.zig:1:13: error: unions must have 1 or more fields");
+        ".tmp_source.zig:1:13: error: unions must have 1 or more fields",
+    );
 
-    cases.add("enum value already taken",
+    cases.add(
+        "enum value already taken",
         \\const MultipleChoice = enum(u32) {
         \\    A = 20,
         \\    B = 40,
@@ -2974,9 +3717,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
     ,
         ".tmp_source.zig:6:9: error: enum tag value 60 already taken",
-        ".tmp_source.zig:4:9: note: other occurrence here");
+        ".tmp_source.zig:4:9: note: other occurrence here",
+    );
 
-    cases.add("union with specified enum omits field",
+    cases.add(
+        "union with specified enum omits field",
         \\const Letter = enum {
         \\    A,
         \\    B,
@@ -2991,9 +3736,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
     ,
         ".tmp_source.zig:6:17: error: enum field missing: 'C'",
-        ".tmp_source.zig:4:5: note: declared here");
+        ".tmp_source.zig:4:5: note: declared here",
+    );
 
-    cases.add("@TagType when union has no attached enum",
+    cases.add(
+        "@TagType when union has no attached enum",
         \\const Foo = union {
         \\    A: i32,
         \\};
@@ -3002,9 +3749,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
     ,
         ".tmp_source.zig:5:24: error: union 'Foo' has no tag",
-        ".tmp_source.zig:1:13: note: consider 'union(enum)' here");
+        ".tmp_source.zig:1:13: note: consider 'union(enum)' here",
+    );
 
-    cases.add("non-integer tag type to automatic union enum",
+    cases.add(
+        "non-integer tag type to automatic union enum",
         \\const Foo = union(enum(f32)) {
         \\    A: i32,
         \\};
@@ -3012,9 +3761,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    const x = @TagType(Foo);
         \\}
     ,
-        ".tmp_source.zig:1:23: error: expected integer tag type, found 'f32'");
+        ".tmp_source.zig:1:23: error: expected integer tag type, found 'f32'",
+    );
 
-    cases.add("non-enum tag type passed to union",
+    cases.add(
+        "non-enum tag type passed to union",
         \\const Foo = union(u32) {
         \\    A: i32,
         \\};
@@ -3022,9 +3773,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    const x = @TagType(Foo);
         \\}
     ,
-        ".tmp_source.zig:1:18: error: expected enum tag type, found 'u32'");
+        ".tmp_source.zig:1:18: error: expected enum tag type, found 'u32'",
+    );
 
-    cases.add("union auto-enum value already taken",
+    cases.add(
+        "union auto-enum value already taken",
         \\const MultipleChoice = union(enum(u32)) {
         \\    A = 20,
         \\    B = 40,
@@ -3037,9 +3790,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
     ,
         ".tmp_source.zig:6:9: error: enum tag value 60 already taken",
-        ".tmp_source.zig:4:9: note: other occurrence here");
+        ".tmp_source.zig:4:9: note: other occurrence here",
+    );
 
-    cases.add("union enum field does not match enum",
+    cases.add(
+        "union enum field does not match enum",
         \\const Letter = enum {
         \\    A,
         \\    B,
@@ -3056,9 +3811,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
     ,
         ".tmp_source.zig:10:5: error: enum field not found: 'D'",
-        ".tmp_source.zig:1:16: note: enum declared here");
+        ".tmp_source.zig:1:16: note: enum declared here",
+    );
 
-    cases.add("field type supplied in an enum",
+    cases.add(
+        "field type supplied in an enum",
         \\const Letter = enum {
         \\    A: void,
         \\    B,
@@ -3069,9 +3826,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
     ,
         ".tmp_source.zig:2:8: error: structs and unions, not enums, support field types",
-        ".tmp_source.zig:1:16: note: consider 'union(enum)' here");
+        ".tmp_source.zig:1:16: note: consider 'union(enum)' here",
+    );
 
-    cases.add("struct field missing type",
+    cases.add(
+        "struct field missing type",
         \\const Letter = struct {
         \\    A,
         \\};
@@ -3079,9 +3838,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    var a = Letter { .A = {} };
         \\}
     ,
-        ".tmp_source.zig:2:5: error: struct field missing type");
+        ".tmp_source.zig:2:5: error: struct field missing type",
+    );
 
-    cases.add("extern union field missing type",
+    cases.add(
+        "extern union field missing type",
         \\const Letter = extern union {
         \\    A,
         \\};
@@ -3089,9 +3850,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    var a = Letter { .A = {} };
         \\}
     ,
-        ".tmp_source.zig:2:5: error: union field missing type");
+        ".tmp_source.zig:2:5: error: union field missing type",
+    );
 
-    cases.add("extern union given enum tag type",
+    cases.add(
+        "extern union given enum tag type",
         \\const Letter = enum {
         \\    A,
         \\    B,
@@ -3106,9 +3869,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    var a = Payload { .A = 1234 };
         \\}
     ,
-        ".tmp_source.zig:6:29: error: extern union does not support enum tag type");
+        ".tmp_source.zig:6:29: error: extern union does not support enum tag type",
+    );
 
-    cases.add("packed union given enum tag type",
+    cases.add(
+        "packed union given enum tag type",
         \\const Letter = enum {
         \\    A,
         \\    B,
@@ -3123,9 +3888,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    var a = Payload { .A = 1234 };
         \\}
     ,
-        ".tmp_source.zig:6:29: error: packed union does not support enum tag type");
+        ".tmp_source.zig:6:29: error: packed union does not support enum tag type",
+    );
 
-    cases.add("switch on union with no attached enum",
+    cases.add(
+        "switch on union with no attached enum",
         \\const Payload = union {
         \\    A: i32,
         \\    B: f64,
@@ -3143,9 +3910,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
     ,
         ".tmp_source.zig:11:14: error: switch on union which has no attached enum",
-        ".tmp_source.zig:1:17: note: consider 'union(enum)' here");
+        ".tmp_source.zig:1:17: note: consider 'union(enum)' here",
+    );
 
-    cases.add("enum in field count range but not matching tag",
+    cases.add(
+        "enum in field count range but not matching tag",
         \\const Foo = enum(u32) {
         \\    A = 10,
         \\    B = 11,
@@ -3155,9 +3924,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
     ,
         ".tmp_source.zig:6:16: error: enum 'Foo' has no tag matching integer value 0",
-        ".tmp_source.zig:1:13: note: 'Foo' declared here");
+        ".tmp_source.zig:1:13: note: 'Foo' declared here",
+    );
 
-    cases.add("comptime cast enum to union but field has payload",
+    cases.add(
+        "comptime cast enum to union but field has payload",
         \\const Letter = enum { A, B, C };
         \\const Value = union(Letter) {
         \\    A: i32,
@@ -3169,9 +3940,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
     ,
         ".tmp_source.zig:8:26: error: cast to union 'Value' must initialize 'i32' field 'A'",
-        ".tmp_source.zig:3:5: note: field 'A' declared here");
+        ".tmp_source.zig:3:5: note: field 'A' declared here",
+    );
 
-    cases.add("runtime cast to union which has non-void fields",
+    cases.add(
+        "runtime cast to union which has non-void fields",
         \\const Letter = enum { A, B, C };
         \\const Value = union(Letter) {
         \\    A: i32,
@@ -3186,9 +3959,11 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\}
     ,
         ".tmp_source.zig:11:20: error: runtime cast to union 'Value' which has non-void fields",
-        ".tmp_source.zig:3:5: note: field 'A' has type 'i32'");
+        ".tmp_source.zig:3:5: note: field 'A' has type 'i32'",
+    );
 
-    cases.add("self-referencing function pointer field",
+    cases.add(
+        "self-referencing function pointer field",
         \\const S = struct {
         \\    f: fn(_: S) void,
         \\};
@@ -3198,19 +3973,23 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    var _ = S { .f = f };
         \\}
     ,
-        ".tmp_source.zig:4:9: error: type 'S' is not copyable; cannot pass by value");
+        ".tmp_source.zig:4:9: error: type 'S' is not copyable; cannot pass by value",
+    );
 
-    cases.add("taking offset of void field in struct",
+    cases.add(
+        "taking offset of void field in struct",
         \\const Empty = struct {
         \\    val: void,
         \\};
         \\export fn foo() void {
-        \\    const fieldOffset = @offsetOf(Empty, "val");
+        \\    const fieldOffset = @offsetOf(Empty, "val",);
         \\}
     ,
-        ".tmp_source.zig:5:42: error: zero-bit field 'val' in struct 'Empty' has no offset");
+        ".tmp_source.zig:5:42: error: zero-bit field 'val' in struct 'Empty' has no offset",
+    );
 
-    cases.add("invalid union field access in comptime",
+    cases.add(
+        "invalid union field access in comptime",
         \\const Foo = union {
         \\    Bar: u8,
         \\    Baz: void,
@@ -3220,21 +3999,26 @@ pub fn addCases(cases: &tests.CompileErrorContext) void {
         \\    const bar_val = foo.Bar;
         \\}
     ,
-        ".tmp_source.zig:7:24: error: accessing union field 'Bar' while field 'Baz' is set");
+        ".tmp_source.zig:7:24: error: accessing union field 'Bar' while field 'Baz' is set",
+    );
 
-    cases.add("getting return type of generic function",
+    cases.add(
+        "getting return type of generic function",
         \\fn generic(a: var) void {}
         \\comptime {
         \\    _ = @typeOf(generic).ReturnType;
         \\}
     ,
-        ".tmp_source.zig:3:25: error: ReturnType has not been resolved because 'fn(var)var' is generic");
+        ".tmp_source.zig:3:25: error: ReturnType has not been resolved because 'fn(var)var' is generic",
+    );
 
-    cases.add("getting @ArgType of generic function",
+    cases.add(
+        "getting @ArgType of generic function",
         \\fn generic(a: var) void {}
         \\comptime {
         \\    _ = @ArgType(@typeOf(generic), 0);
         \\}
     ,
-        ".tmp_source.zig:3:36: error: @ArgType could not resolve the type of arg 0 because 'fn(var)var' is generic");
+        ".tmp_source.zig:3:36: error: @ArgType could not resolve the type of arg 0 because 'fn(var)var' is generic",
+    );
 }
test/gen_h.zig
@@ -76,5 +76,4 @@ pub fn addCases(cases: &tests.GenHContext) void {
         \\TEST_EXPORT void entry(struct Foo foo, uint8_t bar[]);
         \\
     );
-
 }
test/translate_c.zig
@@ -638,7 +638,6 @@ pub fn addCases(cases: &tests.TranslateCContext) void {
         \\}
     );
 
-
     cases.addC("c style cast",
         \\int float_to_int(float a) {
         \\    return (int)a;
@@ -1289,29 +1288,29 @@ pub fn addCases(cases: &tests.TranslateCContext) void {
         \\    }
         \\}
     ,
-       \\pub fn switch_fn(i: c_int) c_int {
-       \\    var res: c_int = 0;
-       \\    __switch: {
-       \\        __case_2: {
-       \\            __default: {
-       \\                __case_1: {
-       \\                    __case_0: {
-       \\                        switch (i) {
-       \\                            0 => break :__case_0,
-       \\                            1 => break :__case_1,
-       \\                            else => break :__default,
-       \\                            2 => break :__case_2,
-       \\                        }
-       \\                    }
-       \\                    res = 1;
-       \\                }
-       \\                res = 2;
-       \\            }
-       \\            res = (3 * i);
-       \\            break :__switch;
-       \\        }
-       \\        res = 5;
-       \\    }
-       \\}
+        \\pub fn switch_fn(i: c_int) c_int {
+        \\    var res: c_int = 0;
+        \\    __switch: {
+        \\        __case_2: {
+        \\            __default: {
+        \\                __case_1: {
+        \\                    __case_0: {
+        \\                        switch (i) {
+        \\                            0 => break :__case_0,
+        \\                            1 => break :__case_1,
+        \\                            else => break :__default,
+        \\                            2 => break :__case_2,
+        \\                        }
+        \\                    }
+        \\                    res = 1;
+        \\                }
+        \\                res = 2;
+        \\            }
+        \\            res = (3 * i);
+        \\            break :__switch;
+        \\        }
+        \\        res = 5;
+        \\    }
+        \\}
     );
 }