summaryrefslogtreecommitdiff
path: root/test/files/run/t8601d.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t8601d.scala')
-rw-r--r--test/files/run/t8601d.scala8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/files/run/t8601d.scala b/test/files/run/t8601d.scala
deleted file mode 100644
index ac89963d67..0000000000
--- a/test/files/run/t8601d.scala
+++ /dev/null
@@ -1,8 +0,0 @@
-object Test {
- def monitor(x: AnyRef): Unit = {x.synchronized(()); ()}
- def check(x: => Any) = try { x; sys.error("failed to throw NPE") } catch { case _: NullPointerException => }
-
- def main(args: Array[String]) {
- check(monitor(null))
- }
-}