summaryrefslogtreecommitdiff
path: root/src/glsl/tests/swiz-02.glsl
diff options
context:
space:
mode:
Diffstat (limited to 'src/glsl/tests/swiz-02.glsl')
-rw-r--r--src/glsl/tests/swiz-02.glsl11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/glsl/tests/swiz-02.glsl b/src/glsl/tests/swiz-02.glsl
new file mode 100644
index 0000000000..e3f043c47b
--- /dev/null
+++ b/src/glsl/tests/swiz-02.glsl
@@ -0,0 +1,11 @@
+/* FAIL: assignment of a vec2 to a float */
+#version 120
+
+void main()
+{
+ float a;
+ vec4 b;
+
+ b.x = 6.0;
+ a = b.xy;
+}