Add more structure constructor tests.
[piglit/hramrach.git] / tests / glslparsertest / shaders / struct8.frag
blob8e9766e75be5bf9e5eaa90ab518b7a0d3874f3ef
1 struct s {\r
2     int i;\r
3 } s1;\r
4 \r
5 struct ss {\r
6     int i;\r
7 } s2;\r
8 \r
9 void main()\r
10 {\r
11     s1 = s2;  // two different structures cannot be assigned to each other\r
12 }\r