aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/bugs/3586.zig
blob: c33e2e601f58dc6e85ee6ab77a891c00bf4f5669 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const builtin = @import("builtin");

const NoteParams = struct {};

const Container = struct {
    params: ?NoteParams,
};

test "fixed" {
    var ctr = Container{
        .params = NoteParams{},
    };
    _ = ctr;
}