Skip to content

Commit 5ecac1a

Browse files
committed
Fix exhaustivity issue required to publish bootstrapped
1 parent 54a54d2 commit 5ecac1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/src/dotty/tools/dotc/typer/Namer.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -728,7 +728,7 @@ class Namer { typer: Typer =>
728728
moduleDef.getOrElse(name.moduleClassName, EmptyTree) match {
729729
case t: TypeDef =>
730730
createLinks(cdef, t)
731-
case EmptyTree =>
731+
case Thicket(_) =>
732732
}
733733

734734
// If a top-level object or class has no companion in the current run, we

0 commit comments

Comments
 (0)