Skip to content

Commit fd3edbd

Browse files
committed
Fix rebase breakage
1 parent 0da2614 commit fd3edbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ trait ImplicitRunInfo { self: Run =>
560560

561561
val comps = new TermRefSet
562562
def addCompanion(pre: Type, companion: Symbol) =
563-
if (companion.exists && !companion.isAbsent) comps += TermRef(pre, companion)
563+
if (companion.exists && !companion.isAbsent()) comps += TermRef(pre, companion)
564564

565565
def addPath(pre: Type): Unit = pre.dealias match {
566566
case pre: ThisType if pre.cls.is(Module) && pre.cls.isStaticOwner =>

0 commit comments

Comments
 (0)