summaryrefslogtreecommitdiff
path: root/test/files/run
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run')
-rw-r--r--test/files/run/t8601d.flags1
-rw-r--r--test/files/run/t8601d.scala8
2 files changed, 0 insertions, 9 deletions
diff --git a/test/files/run/t8601d.flags b/test/files/run/t8601d.flags
deleted file mode 100644
index 1182725e86..0000000000
--- a/test/files/run/t8601d.flags
+++ /dev/null
@@ -1 +0,0 @@
--optimize \ No newline at end of file
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))
- }
-}