ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / glsl-1.10 / compiler / declarations / const-inout-parameter.frag
blobfacf8bd949bb956660716d636d560098a0fa0771
1 // [config]
2 // expect_result: fail
3 // glsl_version: 1.10
4 // [end config]
6 /* The GLSL 1.10 spec says:
7  *
8  *     "[T]he const qualifier cannot be used with out or inout."
9  */
10 void function(const inout int i) {}