Skip to content

Commit 24ccb77

Browse files
committed
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`.
1 parent df7d891 commit 24ccb77

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/run/t920.scala renamed to tests/pending/run/t920.scala

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,9 @@ object Test {
1717
def main(args : Array[String]) : Unit = {
1818
b.initialize;
1919
}
20+
class XYZ
2021
}
22+
23+
24+
25+

0 commit comments

Comments
 (0)