blob: 418c67d64f71c8563c3ed14ac1b0275f8a34f740 [file] [log] [blame]
struct S {
f : f32;
};
[[group(0), binding(0)]] var<storage, read> in : array<S>;
[[group(0), binding(1)]] var<storage, read_write> out : array<S>;
[[stage(compute), workgroup_size(1)]]
fn main() {
out[0] = in[0];
}