summaryrefslogtreecommitdiff
path: root/test/files/neg/t8372.check
diff options
context:
space:
mode:
authorGrzegorz Kossakowski <grzegorz.kossakowski@gmail.com>2014-03-07 02:40:29 +0100
committerGrzegorz Kossakowski <grzegorz.kossakowski@gmail.com>2014-03-07 02:40:29 +0100
commit9b0d0a8e9a09a79f6251e72e60449aa749a96dca (patch)
tree0454acb64ac30210695f5b8d60cb98718d069fea /test/files/neg/t8372.check
parent2dddb03b267770afcd0249ad700e55d53019e637 (diff)
downloadscala-9b0d0a8e9a09a79f6251e72e60449aa749a96dca.tar.gz
scala-9b0d0a8e9a09a79f6251e72e60449aa749a96dca.tar.bz2
scala-9b0d0a8e9a09a79f6251e72e60449aa749a96dca.zip
Test case for SI-8372: issue with ArrayOps.unzip
This commit merely documents current (suboptimal) error message printed for the code reported in SI-8372. The next commit will fix the problem.
Diffstat (limited to 'test/files/neg/t8372.check')
-rw-r--r--test/files/neg/t8372.check7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/files/neg/t8372.check b/test/files/neg/t8372.check
new file mode 100644
index 0000000000..87c27a26cc
--- /dev/null
+++ b/test/files/neg/t8372.check
@@ -0,0 +1,7 @@
+t8372.scala:7: error: tpe T1 is an unresolved spliceable type
+ def unzip[T1, T2](a: Array[(T1, T2)]) = a.unzip
+ ^
+t8372.scala:9: error: tpe T1 is an unresolved spliceable type
+ def unzip3[T1, T2, T3](a: Array[(T1, T2, T3)]): (Array[T1], Array[T2], Array[T3]) = a.unzip3
+ ^
+two errors found