From a55e5363917befcb93575c256a3ce8fc150e0666 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Tue, 25 Feb 2020 21:32:03 -0500 Subject: [PATCH] fix typo in previous commit oops, forgot to actually run the test --- test/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 index fb47376f8e..6821527894 100644 --- 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 {