Skip to content

Commit

Permalink
Test case for SI-8372: issue with ArrayOps.unzip
Browse files Browse the repository at this point in the history
This commit merely documents current (suboptimal) error message printed
for the code reported in SI-8372. The next commit will fix the problem.
  • Loading branch information
gkossakowski committed Mar 7, 2014
1 parent 2dddb03 commit 9b0d0a8
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
7 changes: 7 additions & 0 deletions 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
10 changes: 10 additions & 0 deletions test/files/neg/t8372.scala
@@ -0,0 +1,10 @@
class t8372 {
// failed with "error: tpe T1 is an unresolved spliceable type"; that was caused by
// misguided type inference of type parameters in ArrayOps.unzip
// the type inference failed because the order of implicit arguments was wrong
// the evidence that T <: (T1, T2) came as last argument so it couldn't guide the
// type inference early enough
def unzip[T1, T2](a: Array[(T1, T2)]) = a.unzip
// the same as above
def unzip3[T1, T2, T3](a: Array[(T1, T2, T3)]): (Array[T1], Array[T2], Array[T3]) = a.unzip3
}

0 comments on commit 9b0d0a8

Please sign in to comment.