1struct S { 2 float f; 3 float4 pos : SV_Position; 4}; 5 6float4 main(int i, S input[3]) : COLOR0 7{ 8 S a[3]; 9 input = a; 10 11 return a[1].pos; 12} 13