dawn-cmake/test/shadowing/struct/param.wgsl.expected.wgsl

8 lines
55 B
WebGPU Shading Language

struct a {
a : i32;
};
fn f(a : a) {
let b = a;
}