dawn-cmake/test/identifiers/underscore/prefix/lower/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;
}