ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / glsl-1.10 / compiler / qualifiers / out-02.vert
blobe13ea08aa7ce65b100ef2b8cd67a25229e29d735
1 // [config]
2 // expect_result: fail
3 // glsl_version: 1.10
4 // [end config]
5 //
6 // "out" is only allowed in parameter list in GLSL 1.10
8 void main()
10   out vec4 foo;
12   gl_Position = gl_Vertex;