Add more structure constructor tests.
[piglit/hramrach.git] / tests / glslparsertest / shaders / function3.frag
blob12fc0cd62037c603ca1169554e7e19ca7fe9f7b4
1 void function(const int i)  \r
2 {\r
3     i = 3;  // const value cant be modified\r
4 }\r
5 \r
6 void main()\r
7 {\r
8     int i;\r
9     function(i);\r
10 }\r