ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / glsl-1.50 / compiler / incorrect-out-layout-qualifiers-with-variable-declarations.geom
blobf7f498eaab9b2828f6edaad106701fa0350a4585
1 // [config]
2 // expect_result: fail
3 // glsl_version: 1.50
4 // check_link: false
5 // [end config]
6 //
7 // Tests that output layout qualifiers cannot be used on a variable declaration.
8 //
9 // GLSLangSpec 1.50, section 4.3.8.2 (Output Layout Qualifiers):
10 // "Geometry shaders can have output layout qualifiers only on the interface
11 //  qualifier out, not on an output block or variable declaration."
13 #version 150
15 layout(points) out float c;
17 void main()