ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / glsl-1.50 / compiler / interface-blocks-varying-used.vert
blobc0a957b095250f98aae0a3504879cbf9bc6b9ec2
1 // [config]
2 // expect_result: fail
3 // glsl_version: 1.50
4 // check_link: true
5 // [end config]
6 //
7 // Tests that a varying 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     varying vec4 a; // illegal: can't use deprecated varying keyword
17 } inst;
19 void main()