fn testStaticStringMapWithEql(map: TestMapWithEql) !void
fn testStaticStringMapWithEql(map: TestMapWithEql) !void { try testMap(map); try testing.expectEqual(TestEnum.A, map.get("HAVE").?); try testing.expectEqual(TestEnum.E, map.get("SameLen").?); try testing.expect(null == map.get("SameLength")); try testing.expect(map.has("ThESe")); }