summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-05-20 22:24:52 +0000
committerPaul Phillips <paulp@improving.org>2010-05-20 22:24:52 +0000
commitbb141f2c7d3a35e3a60c02b7385faf5c4adcad72 (patch)
tree636e94fccb10a279416bcbe385b45ea4758ca4bf /test/files
parent448c34d11bb9ad269072c8ede94a012749b47e5a (diff)
downloadscala-bb141f2c7d3a35e3a60c02b7385faf5c4adcad72.tar.gz
scala-bb141f2c7d3a35e3a60c02b7385faf5c4adcad72.tar.bz2
scala-bb141f2c7d3a35e3a60c02b7385faf5c4adcad72.zip
Moved the test for #3420 to pending and reopene...
Moved the test for #3420 to pending and reopened the ticket. The bug only materializes if scalac was itself built with -optimise. (We may need a richer language for describing optimise bugs.) No review.
Diffstat (limited to 'test/files')
-rw-r--r--test/files/pos/bug3420.flags1
-rw-r--r--test/files/pos/bug3420.scala5
2 files changed, 0 insertions, 6 deletions
diff --git a/test/files/pos/bug3420.flags b/test/files/pos/bug3420.flags
deleted file mode 100644
index ea03113c66..0000000000
--- a/test/files/pos/bug3420.flags
+++ /dev/null
@@ -1 +0,0 @@
--optimise -Xfatal-warnings \ No newline at end of file
diff --git a/test/files/pos/bug3420.scala b/test/files/pos/bug3420.scala
deleted file mode 100644
index 0fc56ed67b..0000000000
--- a/test/files/pos/bug3420.scala
+++ /dev/null
@@ -1,5 +0,0 @@
-class C {
- val cv = Map[Int, Int](1 -> 2)
- lazy val cl = Map[Int, Int](1 -> 2)
- def cd = Map[Int, Int](1 -> 2)
-}