linkname ""; typedef A = ( int a, int#[2] aa, ); typedef B = (int b, int bb)#[2]; () test() { /* ERRORS missing left operand */ A x = (11, [*2, 33]); B y = [(1, *2), (3, 4)]; int#[2] z = [1, *2]; /* ERRORS missing right operand */ A xr = (11, [2*, 33]); B yr = [(1*, 2), (3, 4)]; int#[2] zr = [1, 2*]; }