Add more structure constructor tests.
[piglit/hramrach.git] / tests / glslparsertest / glsl2 / return-conversion.frag
blobf02ea9bc2c513f08289920346b61382c5e586c5f
1 /* FAIL - no implicit conversions for return values */
2 float foo()
4    int x = 1;
5    return x;
7 void main()
9    gl_FragColor = vec4(0.0, foo(), 0.0, 0.0);