aboutsummaryrefslogtreecommitdiff
path: root/tests/repl/imports.check
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2016-04-27 15:08:26 +0200
committerFelix Mulder <felix.mulder@gmail.com>2016-04-28 11:00:40 +0200
commitf010c62b8dc8baaaa9b87784d8664997bee95fa4 (patch)
tree701921097c2042fdd074915c5acb17c59273389e /tests/repl/imports.check
parentb5d6df22ab6bae982b6c840e1563d4bcbadd384b (diff)
downloaddotty-f010c62b8dc8baaaa9b87784d8664997bee95fa4.tar.gz
dotty-f010c62b8dc8baaaa9b87784d8664997bee95fa4.tar.bz2
dotty-f010c62b8dc8baaaa9b87784d8664997bee95fa4.zip
Revert Scanners and Tokens to their original form
Since we decided to go with the non dotty-scanner approach these are unnecessary to have altered, might just as well revert them.
Diffstat (limited to 'tests/repl/imports.check')
-rw-r--r--tests/repl/imports.check4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/repl/imports.check b/tests/repl/imports.check
index 3fa103283..3a7e9341e 100644
--- a/tests/repl/imports.check
+++ b/tests/repl/imports.check
@@ -2,9 +2,7 @@ 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)
- | }
+scala> object o { val xs = List(1, 2, 3) }
defined module o
scala> import o._
import o._