1 /* Here we test that linking fails for a non-exact function match with
2 * implicit function param conversions. Implicit conversion are not allowed
12 vec4 my_position(vec4 a)
20 vec4 my_position(ivec4 a);
24 gl_Position = my_position(ivec4(1.0));
32 gl_FragColor = vec4(1.0);