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

// error
// backend=stage2
// target=native
//
// :2:15: error: initializing array with struct syntax