From 0a0cdb03d8c4c9c42da114fe5b0bc8c7911f0c24 Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Wed, 22 Sep 2010 21:06:29 +0000 Subject: Test case closes #3774, no review. --- test/files/neg/bug3774.check | 7 +++++++ test/files/neg/bug3774.scala | 3 +++ 2 files changed, 10 insertions(+) create mode 100644 test/files/neg/bug3774.check create mode 100644 test/files/neg/bug3774.scala (limited to 'test/files/neg') diff --git a/test/files/neg/bug3774.check b/test/files/neg/bug3774.check new file mode 100644 index 0000000000..f969218770 --- /dev/null +++ b/test/files/neg/bug3774.check @@ -0,0 +1,7 @@ +bug3774.scala:2: error: overloaded method value ++ with alternatives: + [B1 >: List[Int]](xs: scala.collection.TraversableOnce[((Int, Int), B1)])scala.collection.immutable.Map[(Int, Int),B1] + [B >: ((Int, Int), List[Int]),That](that: scala.collection.TraversableOnce[B])(implicit bf: scala.collection.generic.CanBuildFrom[scala.collection.immutable.Map[(Int, Int),List[Int]],B,That])That + cannot be applied to (scala.collection.immutable.IndexedSeq[((Int, Int), scala.collection.immutable.Range.Inclusive)]) + Map[(Int,Int),List[Int]]() ++ (for(x <- 0 to 1 ; y <- 0 to 1) yield {(x,y)-> (0 to 1)}) + ^ +one error found diff --git a/test/files/neg/bug3774.scala b/test/files/neg/bug3774.scala new file mode 100644 index 0000000000..2fb9bf5d39 --- /dev/null +++ b/test/files/neg/bug3774.scala @@ -0,0 +1,3 @@ +object Hang { + Map[(Int,Int),List[Int]]() ++ (for(x <- 0 to 1 ; y <- 0 to 1) yield {(x,y)-> (0 to 1)}) +} \ No newline at end of file -- cgit v1.2.3