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