fn atan2_3c2865() {
var res = atan2(vec3(1.0), vec3(1.0));
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
atan2_3c2865();
return vec4<f32>();
@fragment
fn fragment_main() {
@compute @workgroup_size(1)
fn compute_main() {