blob: ef7e659b9f54878785d8c43ce4a91f18adfeb97f [file] [log] [blame]
var<private> x_1 : vec3<i32>;
fn main_1() {
let x_2 : vec3<i32> = x_1;
return;
}
[[stage(compute), workgroup_size(1, 1, 1)]]
fn main([[builtin(workgroup_id)]] x_1_param : vec3<u32>) {
x_1 = bitcast<vec3<i32>>(x_1_param);
main_1();
}