From ef8c1968b2ea407c5b2ddca2fef00eb922e81f8e Mon Sep 17 00:00:00 2001 From: Martin Odersky Date: Fri, 18 Mar 2016 11:33:34 +0100 Subject: Add test file --- tests/repl/imports.check | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 tests/repl/imports.check diff --git a/tests/repl/imports.check b/tests/repl/imports.check new file mode 100644 index 000000000..3fa103283 --- /dev/null +++ b/tests/repl/imports.check @@ -0,0 +1,24 @@ +scala> import scala.collection.mutable +import scala.collection.mutable +scala> val buf = mutable.ListBuffer[Int]() +buf: scala.collection.mutable.ListBuffer[Int] = ListBuffer() +scala> object o { + | val xs = List(1, 2, 3) + | } +defined module o +scala> import o._ +import o._ +scala> buf += xs +:11: error: type mismatch: + found : scala.collection.immutable.List[Int](o.xs) + required: String +buf += xs + ^ +:11: error: type mismatch: + found : String + required: scala.collection.mutable.ListBuffer[Int] +buf += xs +^ +scala> buf ++= xs +res1: scala.collection.mutable.ListBuffer[Int] = ListBuffer(1, 2, 3) +scala> :quit -- cgit v1.2.3