summaryrefslogtreecommitdiff
path: root/src/glsl/tests/array-12.glsl
diff options
context:
space:
mode:
Diffstat (limited to 'src/glsl/tests/array-12.glsl')
-rw-r--r--src/glsl/tests/array-12.glsl11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/glsl/tests/array-12.glsl b/src/glsl/tests/array-12.glsl
deleted file mode 100644
index 7fc9579452..0000000000
--- a/src/glsl/tests/array-12.glsl
+++ /dev/null
@@ -1,11 +0,0 @@
-#version 120
-/* FAIL - array must have an implicit or explicit size */
-
-void main()
-{
- vec4 a[];
-
- a = vec4 [2] (vec4(1.0), vec4(2.0));
-
- gl_Position = gl_Vertex;
-}