master
 1const S = struct {
 2    fizz: void,
 3};
 4
 5export fn entry() void {
 6    _ = @as(S, struct { void }{{}});
 7}
 8
 9// error
10//
11// :6:31: error: expected type 'tmp.S', found 'struct { void }'
12// :1:11: note: struct declared here