dawn-cmake/test/identifiers/underscore/prefix/lower/struct.wgsl

11 lines
95 B
WebGPU Shading Language

struct a {
b : i32;
};
struct _a {
_b : i32;
};
fn f() {
let c = _a();
let d = c._b;
}