summaryrefslogtreecommitdiff
path: root/test/files/run/repl-exceptions.check
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/repl-exceptions.check')
-rw-r--r--test/files/run/repl-exceptions.check25
1 files changed, 0 insertions, 25 deletions
diff --git a/test/files/run/repl-exceptions.check b/test/files/run/repl-exceptions.check
deleted file mode 100644
index f7ce018422..0000000000
--- a/test/files/run/repl-exceptions.check
+++ /dev/null
@@ -1,25 +0,0 @@
-Type in expressions to have them evaluated.
-Type :help for more information.
-
-scala>
-
-scala> sys.SystemProperties.traceSourcePath setValue ""
-res0: String = null
-
-scala> def f = sys.error("hi mom")
-f: Nothing
-
-scala> f
-[package.error] (package.scala:27)
-(access lastException for the full trace)
-
-scala> lastException.show
-/* The repl internal portion of the stack trace is elided. */
-[package.error] (package.scala:27)
-[.f] (<console>:7)
-[.<init>] (<console>:9)
-[.<clinit>] (<console>:-1)
-
-scala>
-
-scala>