1struct S { 2 int a; 3 float b; 4}; 5 6[numthreads(1, 1, 1)] 7void main() { 8 S v = (S)0; 9 return; 10} 11