4 // require_extensions: GL_MESA_shader_integer_functions
7 // Test overload resolution where all candidates require implicit
8 // conversions. Under unextended GLSL 1.30, resolution is ambiguous,
9 // since both functions require implicit conversions.
12 #extension GL_MESA_shader_integer_functions : enable
14 void foo(float x, int y, float z) {}
15 void foo(float x, int y, int z) {} /* better for `z` */