ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / glsl-1.50 / compiler / interface-blocks-attribute-used.vert
blobdd25dacd8ad1f1e2fa8148778a012ffe2fa02704
1 // [config]
2 // expect_result: fail
3 // glsl_version: 1.50
4 // check_link: true
5 // [end config]
6 //
7 // Tests that the attribute qualifier is rejected in an interface block.
8 //
9 // GLSLangSpec.1.50.11, 4.3.7 Interface Blocks:
10 // "Declarations using the deprecated attribute and varying qualifiers
11 //  are not allowed."
13 #version 150
15 out block {
16     attribute vec4 a; // illegal: can't use deprecated attribute keyword
17 } inst;
19 void main()