Add more structure constructor tests.
[piglit/hramrach.git] / tests / glslparsertest / glsl2 / pragma-07.vert
blobcfa076abf44f05da56264aae0a55e75dd9c6fc37
1 /* PASS
2  *
3  * From page 11 (page 17 of the PDF) of the GLSL 1.10 spec:
4  *
5  *     "[#pragma debug] can only be used outside function definitions."
6  *
7  * and
8  *
9  *     "[#pragma optimize] can only be used outside function definitions."
10  *
11  * However, it says nothing about other pragmas.
12  */
13 void main()
15 #pragma unlikely_to_be_recognized
16   gl_Position = gl_Vertex;