aboutsummaryrefslogtreecommitdiff
path: root/tests/repl
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2016-12-14 16:40:31 +0100
committerGitHub <noreply@github.com>2016-12-14 16:40:31 +0100
commitba06bf06721f1a8de7d68d22ad7eba27fff90c43 (patch)
treea02167f1d4d786c027c600c0070c36055cbc2622 /tests/repl
parent19bc03c840f0d6f0678775625562cea5ad7193e7 (diff)
parent35e8fcb805e7780555cf48160f90c9da71bb1811 (diff)
downloaddotty-ba06bf06721f1a8de7d68d22ad7eba27fff90c43.tar.gz
dotty-ba06bf06721f1a8de7d68d22ad7eba27fff90c43.tar.bz2
dotty-ba06bf06721f1a8de7d68d22ad7eba27fff90c43.zip
Merge pull request #1761 from dotty-staging/topic/product-show
[REPL] Add show capability to common types
Diffstat (limited to 'tests/repl')
-rw-r--r--tests/repl/import.check2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/repl/import.check b/tests/repl/import.check
index 3ed0fe46c..d53906ddc 100644
--- a/tests/repl/import.check
+++ b/tests/repl/import.check
@@ -7,5 +7,5 @@ val res0: scala.collection.mutable.ListBuffer[Int] = ListBuffer(22)
scala> buf ++= List(1, 2, 3)
val res1: scala.collection.mutable.ListBuffer[Int] = ListBuffer(22, 1, 2, 3)
scala> buf.toList
-val res2: scala.collection.immutable.List[Int] = List(22, 1, 2, 3)
+val res2: List[Int] = List(22, 1, 2, 3)
scala> :quit