Add more structure constructor tests.
[piglit/hramrach.git] / tests / glslparsertest / glsl2 / redeclaration-19.vert
blob7cb9e266357ede062e33eed28cbfd95c428c92b8
1 /* FAIL - variable hides type name */
3 uniform bool condition;
4 void main() {
5    struct id {
6       int n;
7    };
8    if (condition) {
9       float id = 1.0;
10       id str;
11    }