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

11 lines
143 B
Plaintext

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