aboutsummaryrefslogtreecommitdiff
path: root/tests/repl/imports.check
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2016-09-27 16:07:56 +0200
committerFelix Mulder <felix.mulder@gmail.com>2016-10-10 13:25:35 +0200
commitf5ad8492d076051c8805370c05610d8294ccb241 (patch)
treec8d2aa477d5927bfb14c1e8f6c0417a6d60cab24 /tests/repl/imports.check
parent24bcdfdcdaa04e3cf2aa3c7289415f8a98d3d376 (diff)
downloaddotty-f5ad8492d076051c8805370c05610d8294ccb241.tar.gz
dotty-f5ad8492d076051c8805370c05610d8294ccb241.tar.bz2
dotty-f5ad8492d076051c8805370c05610d8294ccb241.zip
Fix reporting of ErrorTypes in highlighted segments
Diffstat (limited to 'tests/repl/imports.check')
-rw-r--r--tests/repl/imports.check4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/repl/imports.check b/tests/repl/imports.check
index 2e8d5dcf9..817adae87 100644
--- a/tests/repl/imports.check
+++ b/tests/repl/imports.check
@@ -11,13 +11,13 @@ scala> buf += xs
10:buf += xs
^^
found: scala.collection.immutable.List[Int](o.xs)
- required: String
+ required: scala.collection.immutable.List[Int](o.xs)
-- [E006] Type Mismatch Error: <console> -------------------------------------------------------------------------------
10:buf += xs
^^^^^^^^^
found: String
- required: scala.collection.mutable.ListBuffer[Int]
+ required: String
scala> buf ++= xs
res1: scala.collection.mutable.ListBuffer[Int] = ListBuffer(1, 2, 3)