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

9 lines
87 B
WebGPU Shading Language

const a : i32 = 1;
const a__ : i32 = 2;
fn f() {
const b = a;
const b__ = a__;
}