summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/files/run/t8601c.flags1
-rw-r--r--test/files/run/t8601c.scala12
2 files changed, 0 insertions, 13 deletions
diff --git a/test/files/run/t8601c.flags b/test/files/run/t8601c.flags
deleted file mode 100644
index 1182725e86..0000000000
--- a/test/files/run/t8601c.flags
+++ /dev/null
@@ -1 +0,0 @@
--optimize \ No newline at end of file
diff --git a/test/files/run/t8601c.scala b/test/files/run/t8601c.scala
deleted file mode 100644
index c487d6825e..0000000000
--- a/test/files/run/t8601c.scala
+++ /dev/null
@@ -1,12 +0,0 @@
-object Test {
- def loadField(x: scala.runtime.IntRef): Unit = x.elem
- def storeField(x: scala.runtime.IntRef): Unit = x.elem = 42
-
- def check(x: => Any) = try { x; sys.error("failed to throw NPE!") } catch { case _: NullPointerException => }
-
- def main(args: Array[String]) {
- check(loadField(null)) // bug: did not NPE under -Ydead-code
- check(storeField(null))
-
- }
-}