Add more structure constructor tests.
[piglit/hramrach.git] / tests / glslparsertest / glsl2 / struct-05.vert
blob96bc76f9023e3eb96347ff02d9e0a783603e6f77
1 /* FAIL - structure name conflicts with variable name in same scope */
3 uniform vec4 foo;
5 struct foo {
6   float f;
7   int i;
8   bool b;
9 };
11 void main()
13   foo foo;
15   gl_Position = gl_Vertex;