ARB_ubo/referenced-by-shader: pass if shader compiler moves UBOs between shaders
[piglit.git] / tests / spec / mesa_shader_integer_functions / compiler / overloads-02.vert
blobcb58d395707f34a00e26ee1c175f0e697f1bbfd1
1 // [config]
2 // expect_result: fail
3 // glsl_version: 1.30
4 // require_extensions: GL_MESA_shader_integer_functions
5 // [end config]
7 // If a function name is declared twice with the same parameter types,
8 // then the return types _and all qualifiers_ must match.
10 #version 130
11 #extension GL_MESA_shader_integer_functions : enable
13 void foo(int x) {}
14 void foo(out int x) {}