Add more structure constructor tests.
[piglit/hramrach.git] / tests / glslparsertest / glsl2 / redeclaration-08.vert
blob4c37afb1dd9d6b8934427c6a56d208b30f90e7c0
1 /* FAIL - like struct-01.vert, but now the other comes first */
3 struct foo {
4     float f;
5     int i;
6     bool b;
7 };
9 vec4 foo(vec4 a, vec4 b)
11     return vec4(dot(a, b));