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