aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/bugs/4560.zig
blob: ca9a34ea8975f20ab4c1f6268c5db51e5f05ca90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
const std = @import("std");
const builtin = @import("builtin");

test "fixed" {
    if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO

    var s: S = .{
        .a = 1,
        .b = .{
            .size = 123,
            .max_distance_from_start_index = 456,
        },
    };
    try std.testing.expect(s.a == 1);
    try std.testing.expect(s.b.size == 123);
    try 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 {
    if (false) {
        K;
        V;
    }
    return struct {
        size: usize,
        max_distance_from_start_index: usize,
    };
}