summaryrefslogtreecommitdiff
path: root/test/files/run/t5789.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t5789.scala')
-rw-r--r--test/files/run/t5789.scala27
1 files changed, 7 insertions, 20 deletions
diff --git a/test/files/run/t5789.scala b/test/files/run/t5789.scala
index bbb0401941..461f6a4aae 100644
--- a/test/files/run/t5789.scala
+++ b/test/files/run/t5789.scala
@@ -1,27 +1,14 @@
import scala.tools.nsc._
import interpreter.ILoop
+import scala.tools.partest.ReplTest
-object Test {
- def main(args : Array[String]) {
-
- val code = """
- val n = 2
- () => n
- """
-
- val s = new Settings()
- s.optimise.value = true
- val lines = ILoop.runForTranscript(code + "\n" + code, s).lines.toList
-
-
- if (lines exists (_ contains "Abandoning crashed session")) {
- lines foreach println
- println("crashed!")
- } else {
- println("completed successfully")
- }
- }
+object Test extends ReplTest {
+ override def extraSettings = "-Yinline"
+ def code = """
+ val n = 2
+ () => n
+ """
}