dawn-cmake/test/statements/for/scoping.wgsl.expected.hlsl

14 lines
167 B
HLSL

[numthreads(1, 1, 1)]
void unused_entry_point() {
return;
}
void f() {
{
int must_not_collide = 0;
while (true) {
}
}
int must_not_collide = 0;
}