summaryrefslogtreecommitdiff
path: root/test/files/pos/bug1357.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2009-10-06 13:36:01 +0000
committerPaul Phillips <paulp@improving.org>2009-10-06 13:36:01 +0000
commit2d5390fd9925c39f18110c1d74d8dbefd3b16f11 (patch)
treefc177204ac0d0a71d5bfbb9b0e4247637d2714af /test/files/pos/bug1357.scala
parent7f2eaea3e7f08c6fcb53b6c7d7f35bbb4a82ebf5 (diff)
downloadscala-2d5390fd9925c39f18110c1d74d8dbefd3b16f11.tar.gz
scala-2d5390fd9925c39f18110c1d74d8dbefd3b16f11.tar.bz2
scala-2d5390fd9925c39f18110c1d74d8dbefd3b16f11.zip
Test case for #1357.
Diffstat (limited to 'test/files/pos/bug1357.scala')
-rw-r--r--test/files/pos/bug1357.scala21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/files/pos/bug1357.scala b/test/files/pos/bug1357.scala
new file mode 100644
index 0000000000..fcdecb3ad3
--- /dev/null
+++ b/test/files/pos/bug1357.scala
@@ -0,0 +1,21 @@
+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