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
/
constructor-27.vert
blob
3a02c5fc1ef2494590a22acf5a2a44af8a942624
1
/* FAIL - too many parameters given to structure constructor */
2
struct s { float f; };
3
4
void main()
5
{
6
s t = s(1.0, 2.0);
7
}