From e63feffe063987df54cb9a5916003eb400c0b49d Mon Sep 17 00:00:00 2001 From: Martin Odersky Date: Mon, 17 Nov 2014 17:08:26 +0100 Subject: Moved pending tests that work into pos and neg. One test (t2613) required lifting a hard recursion limit in findMember (used for debug only, will be removed in the future). The same test also requires -Yno-deep-subtypes to be reset, so it's in pos_special instead of pos. --- tests/pending/pos/tailcall/t1672.scala | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 tests/pending/pos/tailcall/t1672.scala (limited to 'tests/pending/pos/tailcall/t1672.scala') diff --git a/tests/pending/pos/tailcall/t1672.scala b/tests/pending/pos/tailcall/t1672.scala deleted file mode 100644 index 9be5c6066..000000000 --- a/tests/pending/pos/tailcall/t1672.scala +++ /dev/null @@ -1,10 +0,0 @@ -object Test1672 { - @annotation.tailrec - def bar(x: Int)(y: Int) : Nothing = { - try { - throw new RuntimeException - } catch { - case _: Throwable => bar(x)(y) - } - } -} -- cgit v1.2.3