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

13 lines
95 B
WebGPU Shading Language
Raw Normal View History

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