dawn-cmake/test/tint/identifiers/underscore/double/let.wgsl.expected.msl

11 lines
144 B
Plaintext

#include <metal_stdlib>
using namespace metal;
void f() {
int const a = 1;
int const a__ = a;
int const b = a;
int const b__ = a__;
}