dawn-cmake/test/identifiers/underscore/prefix/upper/struct.wgsl.expected.msl

17 lines
153 B
Plaintext

#include <metal_stdlib>
using namespace metal;
struct A {
int B;
};
struct _A {
int _B;
};
void f() {
_A const c = {};
int const d = c._B;
}