summaryrefslogtreecommitdiff
path: root/test/files/pos/t3252.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t3252.scala')
-rw-r--r--test/files/pos/t3252.scala15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/files/pos/t3252.scala b/test/files/pos/t3252.scala
deleted file mode 100644
index 3ecc1e7cef..0000000000
--- a/test/files/pos/t3252.scala
+++ /dev/null
@@ -1,15 +0,0 @@
-class A {
- def f(x : Boolean) : Thread = {
- g {
- x match {
- case false =>
- B.h { }
- }
- }
- }
-
- private def g[T](block : => T) = sys.error("")
-}
-object B {
- def h(block : => Unit) : Nothing = sys.error("")
-}