zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit a55e5363917befcb93575c256a3ce8fc150e0666 (tree)
parent e75598af3d011c6277d9d715f39d112db948d5e0
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Tue, 25 Feb 2020 21:32:03 -0500

fix typo in previous commit

oops, forgot to actually run the test

Diffstat:
Mtest/stage1/behavior/bugs/4560.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/stage1/behavior/bugs/4560.zig b/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 {