Add more structure constructor tests.
[piglit/hramrach.git] / tests / glslparsertest / glsl2 / constructor-27.vert
blob3a02c5fc1ef2494590a22acf5a2a44af8a942624
1 /* FAIL - too many parameters given to structure constructor */
2 struct s { float f; };
4 void main()
6     s t = s(1.0, 2.0);