blob: 4865f1cf2115653769f9c09d324d53a43f36beb0 [file] [log] [blame]
@group(0) @binding(0) var<uniform> u : vec4<u32>;
@group(0) @binding(1) var<storage, read_write> s : vec4<u32>;
@compute @workgroup_size(1)
fn main() {
let x = u;
s = x;
}