blob: 0cc5e85ea154f9a70bd7ec5f3ee29f41b67bd5e0 [file] [log] [blame]
// flags: --rename-all
const v = vec4();
const x = v.x * 2u;
@group(0) @binding(0)
var<storage, read_write> output : u32;
@compute @workgroup_size(1)
fn main() {
output = x;
}