blob: 1fdd47e69e811505801e91941225620662a410ef [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;
}