[FIR, IR] shouldCheckAbsenceOfDefaultParamsInActual: update comment

Fixing KT-61105 won't help.
Review: https://jetbrains.team/p/kt/reviews/13094/timeline
This commit is contained in:
Nikita Bobko
2023-11-17 16:21:45 +01:00
committed by teamcity
parent 4307e76f15
commit 584c353a44
@@ -35,7 +35,11 @@ interface ExpectActualMatchingContext<T : DeclarationSymbolMarker> : TypeSystemC
val innerClassesCapturesOuterTypeParameters: Boolean
get() = true
// Try to drop it once KT-61105 is fixed
// Default params are not checked on backend because we want to keep "default params in actual" to be suppressible
// with @Suppress("ACTUAL_FUNCTION_WITH_DEFAULT_ARGUMENTS") but backend errors are not suppressible (KT-60426)
// Known clients that do suppress:
// - stdlib
// - coroutines
val shouldCheckAbsenceOfDefaultParamsInActual: Boolean
/**