aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/initializing_array_with_struct_syntax.zig
blob: d00b725bf934032c718effd895bea3d05c4a676e (plain)
1
2
3
4
5
6
7
8
export fn entry() void {
    const x = [_]u8{ .y = 2 };
    _ = x;
}

// error
//
// :2:15: error: initializing array with struct syntax