zig/test/behavior/bugs/4560.zig
Andrew Kelley 4307436b99 move behavior tests from test/stage1/ to test/
And fix test cases to make them pass. This is in preparation for
starting to pass behavior tests with self-hosted.
2021-04-29 15:54:04 -07:00

33 lines
652 B
Zig

const std = @import("std");
test "fixed" {
var s: S = .{
.a = 1,
.b = .{
.size = 123,
.max_distance_from_start_index = 456,
},
};
std.testing.expect(s.a == 1);
std.testing.expect(s.b.size == 123);
std.testing.expect(s.b.max_distance_from_start_index == 456);
}
const S = struct {
a: u32,
b: Map,
const Map = StringHashMap(*S);
};
pub fn StringHashMap(comptime V: type) type {
return HashMap([]const u8, V);
}
pub fn HashMap(comptime K: type, comptime V: type) type {
return struct {
size: usize,
max_distance_from_start_index: usize,
};
}