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