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