summaryrefslogtreecommitdiff
path: root/test/pending/pos/t1357.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/pos/t1357.scala')
-rw-r--r--test/pending/pos/t1357.scala21
1 files changed, 0 insertions, 21 deletions
diff --git a/test/pending/pos/t1357.scala b/test/pending/pos/t1357.scala
deleted file mode 100644
index 7bc6d45034..0000000000
--- a/test/pending/pos/t1357.scala
+++ /dev/null
@@ -1,21 +0,0 @@
-object NonEmptyCons {
- def unapply[H, T](c: (H, T)): Option[(H, T)] = Some(c)
-}
-
-
-object Main {
-
- type BT[+H, +T <: Tuple2[Tuple2[H, T], Tuple2[H, T]]] = Tuple2[H, T]
-
- // type T = Tuple2[String,String]
- type BinaryTree[+E] = BT[E, T forSome { type T <: Tuple2[BT[E, T], BT[E, T]] }]
-
- def foo[E](tree: BinaryTree[E]): Unit = tree match {
- case NonEmptyCons(_, tail) => {
- tail match {
- case NonEmptyCons(_, _) => {
- }
- }
- }
- }
-} \ No newline at end of file