ARB_ubo/referenced-by-shader: pass if shader compiler moves UBOs between shaders
[piglit.git] / tests / spec / mesa_shader_integer_functions / compiler / overloads-03.vert
bloba3597b5979f60b046f985f05db5506c4736978bf
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(const int x) {}        /* `const` is mismatched. */