aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t7226.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t7226.scala')
-rw-r--r--tests/untried/pos/t7226.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/untried/pos/t7226.scala b/tests/untried/pos/t7226.scala
index 06f0c95dc..1b7e2549c 100644
--- a/tests/untried/pos/t7226.scala
+++ b/tests/untried/pos/t7226.scala
@@ -2,11 +2,11 @@ trait HK {
type Rep[X]
// okay
- def unzip2[A, B](ps: Rep[List[(A, B)]])
+ def unzip2[A, B](ps: Rep[List[(A, B)]]): Unit
unzip2(null.asInstanceOf[Rep[List[(Int, String)]]])
// okay
- def unzipHK[A, B, C[_]](ps: Rep[C[(A, B)]])
+ def unzipHK[A, B, C[_]](ps: Rep[C[(A, B)]]): Unit
unzipHK(null.asInstanceOf[Rep[List[(Int, String)]]])
def unzipHKRet0[A, C[_]](ps: C[A]): C[Int]