repo.or.cz
/
piglit
/
hramrach.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add more structure constructor tests.
[piglit/hramrach.git]
/
tests
/
glslparsertest
/
glsl2
/
redeclaration-19.vert
blob
7cb9e266357ede062e33eed28cbfd95c428c92b8
1
/* FAIL - variable hides type name */
2
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
}
12
}