Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
mesa3d
/
53cdb7e51d85d4b4a35fba3ec200b27991b8488b
/
.
/
tests
/
parameters-03.glsl
blob: 7ec30f80cc69860e4903186ded23ec7629a9c9d3 [
file
] [
log
] [
blame
]
/* FAIL - x is redeclared in the function body at the same scope as the
* parameter
*/
void
a
(
float
x
,
float
y
)
{
float
x
;
x
=
y
;
}