
float2 test(float2 a) {
  float2 b = a;
  b.y = sin(a.y);
  return b;
}



