Add more structure constructor tests.
[piglit/hramrach.git] / tests / glslparsertest / glsl2 / local-function-03.frag
blobe201b45de4755ae0bf4dabd90c6cfaedf562e4e6
1 /* PASS - local function declarations are not allowed in GLSL 1.10. */
2 #version 110
3 void main() {
4     float foo(float x);
5     gl_FragColor = vec4(0.0, foo(0.5), 0.0, 1.0);
8 float foo(float x) {
9     return x + 0.5;