aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/bugs/4560.zig
blob: ea40e55da36f00026252b2efe9ed095b250e68fb (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
const std = @import("std");
const builtin = @import("builtin");

test "fixed" {
    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,
    };
}