aboutsummaryrefslogtreecommitdiff
path: root/tests/repl/imports.check
diff options
context:
space:
mode:
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._