Skip to content

Commit 37aa7c0

Browse files
committed
Rename classes to avoid 'compiled twice' errors
1 parent 4bb7a6b commit 37aa7c0

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

tests/pos/reference/exports.scala

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@
2222
def status: List[String] = printUnit.status ++ scanUnit.status
2323
}
2424

25-
class C { type T }
26-
object O { val c: C = ??? }
27-
export O.c
28-
def f: c.T = ???
29-
25+
class C22 { type T }
26+
object O22 { val c: C22 = ??? }
27+
export O22.c
28+
def f22: c.T = ???

0 commit comments

Comments
 (0)