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

10 lines
132 B
Plaintext

#include <metal_stdlib>
using namespace metal;
void f() {
for(int must_not_collide = 0; ; ) {
}
int must_not_collide = 0;
}