Commit a55e536391

Andrew Kelley <andrew@ziglang.org>
2020-02-26 03:32:03
fix typo in previous commit
oops, forgot to actually run the test
1 parent e75598a
Changed files (1)
test
stage1
behavior
test/stage1/behavior/bugs/4560.zig
@@ -17,7 +17,7 @@ const S = struct {
     a: u32,
     b: Map,
 
-    const Map = std.StringHashMap(*S);
+    const Map = StringHashMap(*S);
 };
 
 pub fn StringHashMap(comptime V: type) type {