summaryrefslogtreecommitdiff
path: root/src/glsl/tests/parameters-03.glsl
diff options
context:
space:
mode:
Diffstat (limited to 'src/glsl/tests/parameters-03.glsl')
-rw-r--r--src/glsl/tests/parameters-03.glsl9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/glsl/tests/parameters-03.glsl b/src/glsl/tests/parameters-03.glsl
deleted file mode 100644
index 7ec30f80cc..0000000000
--- a/src/glsl/tests/parameters-03.glsl
+++ /dev/null
@@ -1,9 +0,0 @@
-/* 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;
-}