Add more structure constructor tests.
[piglit/hramrach.git] / tests / glslparsertest / shaders / function1.frag
blob14c124ed983541abdbe01237721d67f59775aa14
1 void function(int i) \r
2 {\r
3     return i;  // void function cannot return a value\r
4 }\r
5 \r
6 void main()\r
7 {\r
8     int i;\r
9     function(i);\r
10 }\r