glsl: test loop unroll with uint overflow
[piglit.git] / tests / spec / arb_shader_subroutine / compiler / multiple-subroutine-qualifiers.vert
blobbb1f0cbe2a94fc1829caf98e6f55b3b033c545e3
1 // [config]
2 // expect_result: fail
3 // glsl_version: 1.50
4 // require_extensions: GL_ARB_shader_subroutine
5 // [end config]
6 //
7 // Test for compile error when there are multiple subroutine qualifiers for a
8 // single function.
10 #version 150
11 #extension GL_ARB_shader_subroutine: require
13 subroutine void func_type();
15 /* A subroutine matching the above type */
16 subroutine (func_type) subroutine (func_type) void f() {}