dawn-cmake/test/tint/identifiers/underscore/double/struct.wgsl.expected.wgsl

13 lines
99 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__;
}