aboutsummaryrefslogtreecommitdiff
path: root/tests/repl/imports.check
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2016-09-16 22:28:27 +0200
committerFelix Mulder <felix.mulder@gmail.com>2016-10-10 13:25:34 +0200
commit787a2ceec02fe07fbb9efee673d3abb7cac2969e (patch)
treee64a077eea45b0298aca88fdfdd459cf9e1a9e83 /tests/repl/imports.check
parent5c243778279d8b258d7b1d34dd5146dff07eb437 (diff)
downloaddotty-787a2ceec02fe07fbb9efee673d3abb7cac2969e.tar.gz
dotty-787a2ceec02fe07fbb9efee673d3abb7cac2969e.tar.bz2
dotty-787a2ceec02fe07fbb9efee673d3abb7cac2969e.zip
Add modifiers to highlighting
Diffstat (limited to 'tests/repl/imports.check')
-rw-r--r--tests/repl/imports.check12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/repl/imports.check b/tests/repl/imports.check
index 3a7e9341e..50b7a93d7 100644
--- a/tests/repl/imports.check
+++ b/tests/repl/imports.check
@@ -7,14 +7,14 @@ defined module o
scala> import o._
import o._
scala> buf += xs
-<console>:11: error: type mismatch:
- found : scala.collection.immutable.List[Int](o.xs)
- required: String
+<console>:11: Error: type mismatch:
+found: scala.collection.immutable.List[Int](o.xs)
+required: String
buf += xs
^
-<console>:11: error: type mismatch:
- found : String
- required: scala.collection.mutable.ListBuffer[Int]
+<console>:11: Error: type mismatch:
+found: String
+required: scala.collection.mutable.ListBuffer[Int]
buf += xs
^
scala> buf ++= xs