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