aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2016-02-11 09:19:09 +0100
committerMartin Odersky <odersky@gmail.com>2016-02-11 09:19:09 +0100
commit24ccb77061d0b6d3b5fa0464e9afb3e48c67eea9 (patch)
tree5b8eb872ad8497c81d60ac0aff3dc1c6285d8fa7 /tests
parentdf7d8914aa139e8961db6ce0651e09b118d8bab2 (diff)
downloaddotty-24ccb77061d0b6d3b5fa0464e9afb3e48c67eea9.tar.gz
dotty-24ccb77061d0b6d3b5fa0464e9afb3e48c67eea9.tar.bz2
dotty-24ccb77061d0b6d3b5fa0464e9afb3e48c67eea9.zip
Move test to pending
The underlying problem on MacOS/Windows remains: We have a class `B` and an object `b` in the same scope. We used to get a conflict on `B$/b$` because we created an empty companion object for `B`. Now we get a conflict for `B/b`, because the `b` object creates to classes: `b.class` an `b$.class` and `b.class` clashes with `B.class`.
Diffstat (limited to 'tests')
-rw-r--r--tests/pending/run/t920.scala (renamed from tests/run/t920.scala)5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/run/t920.scala b/tests/pending/run/t920.scala
index 6a7f122d5..a9874e1a8 100644
--- a/tests/run/t920.scala
+++ b/tests/pending/run/t920.scala
@@ -17,4 +17,9 @@ object Test {
def main(args : Array[String]) : Unit = {
b.initialize;
}
+ class XYZ
}
+
+
+
+