blob: 5fe220cc6aee255473be0f0df3a1c8ec5c0e1ac7 [file] [log] [blame]
struct S {
float2 field0;
uint field1;
int field2;
};
void main_1() {
const S x_1 = {float2(50.0f, 60.0f), 5u, 30};
return;
}
[numthreads(1, 1, 1)]
void main() {
main_1();
return;
}