summaryrefslogtreecommitdiff
path: root/test/files/run/repl-exceptions.check
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-05-15 10:21:26 -0700
committerPaul Phillips <paulp@improving.org>2012-05-15 11:12:40 -0700
commit317a1056cd8062331964d1bc65f1bfd945538551 (patch)
treed3682713ea5fd99579eb7240ec587cdc92bf2fed /test/files/run/repl-exceptions.check
parent8a3ed4cc955dd85f37cc148265e920435b009a29 (diff)
downloadscala-317a1056cd8062331964d1bc65f1bfd945538551.tar.gz
scala-317a1056cd8062331964d1bc65f1bfd945538551.tar.bz2
scala-317a1056cd8062331964d1bc65f1bfd945538551.zip
Removing extraneous files.
Culling accumulated unnecessary code.
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>