blob: 29925fffa1799cc641fc74194fc71c5b8d9bb5f9 [file] [log] [blame]
[numthreads(1, 1, 1)]
void unused_entry_point() {
return;
}
struct S {
int i;
uint u;
float f;
bool b;
};
void f() {
S v = {0, 0u, 0.0f, false};
}