aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t6154.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t6154.scala')
-rw-r--r--tests/pending/run/t6154.scala10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/pending/run/t6154.scala b/tests/pending/run/t6154.scala
deleted file mode 100644
index 47773490a..000000000
--- a/tests/pending/run/t6154.scala
+++ /dev/null
@@ -1,10 +0,0 @@
-object Test {
- def foo(a: Int): Unit = {
- var bar: Int = 0
- bar = try { 0 } catch { case ex: Throwable => 0 }
- new { foo(bar) }
- }
-
- def main(args: Array[String]): Unit =
- try foo(0) catch { case _: java.lang.StackOverflowError => println("ok") }
-}