1 2float foo_ff(float v[2]) { 3 return v[0] = v[1]; 4} 5void main() { 6 float y[2]; 7 foo_ff(y); 8} 9