mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-25 13:11:00 +00:00
It's currently passing for Ruamoko, but glsl doesn't catch shadowed params. There's a bit of a conflict and I want to make sure I don't lose the checking.
10 lines
110 B
R
10 lines
110 B
R
float func (int x)
|
|
{
|
|
float x = 0;
|
|
return x;
|
|
}
|
|
|
|
int main ()
|
|
{
|
|
return 1; // test fails if compile succeeds
|
|
}
|