[stdlib] Make @LowPriorityInOverloadResolution applicable to ctors

This commit is contained in:
Sergej Jaskiewicz
2021-12-01 16:21:41 +03:00
committed by Space
parent 2aa1c187d9
commit 599f705842
5 changed files with 36 additions and 1 deletions
@@ -461,6 +461,7 @@ internal object CheckLowPriorityInOverloadResolution : CheckerStage() {
val annotations = when (val fir = candidate.symbol.fir) {
is FirSimpleFunction -> fir.annotations
is FirProperty -> fir.annotations
is FirConstructor -> fir.annotations
else -> return
}