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

13 lines
97 B
WebGPU Shading Language

struct A {
B : i32;
};
struct _A {
_B : i32;
};
fn f() {
let c = _A();
let d = c._B;
}