vector
t1()
{
return [1, 2, 3];
}
t2(float x)
return [x, x, x];
t3(float x)
return [x, t2(9).z, x];
int
main ()
return t3(5) == [5, 9, 5] ? 0 : 1;