dawn-cmake/test/identifiers/underscore/prefix/lower/let.wgsl.expected.msl

13 lines
145 B
Plaintext

#include <metal_stdlib>
using namespace metal;
constant int a = 1;
constant int _a = 2;
void f() {
int const b = a;
int const _b = _a;
}