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

17 lines
160 B
Plaintext

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