summaryrefslogtreecommitdiff
path: root/test/files/run/repl-implicits.check
diff options
context:
space:
mode:
authorJens <DieBauer@users.noreply.github.com>2016-05-13 12:56:52 +0200
committerLukas Rytz <lukas.rytz@typesafe.com>2016-05-13 12:56:52 +0200
commita33b0853452a625ac93eada7d5f265ed09f8e362 (patch)
tree7f8afbd7dafecdf839973d9d803a36c780476b28 /test/files/run/repl-implicits.check
parentf66a230f909858bf39ffdb154727157bc7cd54a5 (diff)
downloadscala-a33b0853452a625ac93eada7d5f265ed09f8e362.tar.gz
scala-a33b0853452a625ac93eada7d5f265ed09f8e362.tar.bz2
scala-a33b0853452a625ac93eada7d5f265ed09f8e362.zip
Add check to scala REPL package to improve feedback about implicits (#5159)
When the repl is started with additional compiler flags that prevent implicits being in scope (like -Yno-predef) the default message of implicits in scope using :implicits stays the same. This additional check will return the same message if predef is indeed in scope and an adjusted message if Predef is not in scope.
Diffstat (limited to 'test/files/run/repl-implicits.check')
-rw-r--r--test/files/run/repl-implicits.check5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/files/run/repl-implicits.check b/test/files/run/repl-implicits.check
new file mode 100644
index 0000000000..6e80cc8799
--- /dev/null
+++ b/test/files/run/repl-implicits.check
@@ -0,0 +1,5 @@
+
+scala> :implicits
+No implicits have been imported other than those in Predef.
+
+scala> :quit \ No newline at end of file