fn print_2389f5() { var arg_0 = vec3(1i); print(arg_0); } @fragment fn fragment_main() { print_2389f5(); } @compute @workgroup_size(1) fn compute_main() { print_2389f5(); } struct VertexOutput { @builtin(position) pos : vec4, } @vertex fn vertex_main() -> VertexOutput { var out : VertexOutput; out.pos = vec4(); print_2389f5(); return out; }