summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAntonio Cunei <antonio.cunei@epfl.ch>2011-05-03 08:39:18 +0000
committerAntonio Cunei <antonio.cunei@epfl.ch>2011-05-03 08:39:18 +0000
commit2dee8cc7acfb433da5e7c416dcfb829e9949599d (patch)
tree49ef27a79171992f7ab824974b85119218cda928 /test
parent3629c32f9f5f0562f89a59b3e9c154769512aa3e (diff)
downloadscala-2dee8cc7acfb433da5e7c416dcfb829e9949599d.tar.gz
scala-2dee8cc7acfb433da5e7c416dcfb829e9949599d.tar.bz2
scala-2dee8cc7acfb433da5e7c416dcfb829e9949599d.zip
Merged revisions 24867-24868 via svnmerge from
https://lampsvn.epfl.ch/svn-repos/scala/scala/trunk ........ r24867 | extempore | 2011-05-03 02:43:12 +0200 (Tue, 03 May 2011) | 2 lines Looks like the :type command was a casualty of a repl fix. Make :type command work, no review. ........ r24868 | plocinic | 2011-05-03 10:27:26 +0200 (Tue, 03 May 2011) | 3 lines rewrite of nested objects implementation. this time do not use bitmaps but normal double locking on module var. this approach is much cleaner and most importantly you get the binary compatibility for nested objects for free. review by odersky, dragos and whoever feels like it. ........
Diffstat (limited to 'test')
-rw-r--r--test/files/run/bug2873.scala5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/files/run/bug2873.scala b/test/files/run/bug2873.scala
deleted file mode 100644
index a21ab56063..0000000000
--- a/test/files/run/bug2873.scala
+++ /dev/null
@@ -1,5 +0,0 @@
-object Test {
- def main(args: Array[String]): Unit = {
- classOf[scala.collection.immutable.RedBlack[_]].getMethod("Empty").getGenericReturnType
- }
-}