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

18 lines
121 B
Plaintext

#include <metal_stdlib>
using namespace metal;
void a() {
}
void _a() {
}
void b() {
a();
}
void _b() {
_a();
}