FIR: Fix FP error on a call to constructor of a private inner class

Do not check dispatch receiver applicability when checking visibility
for containing class of a callee constructor
This commit is contained in:
Denis.Zharkov
2022-05-30 11:58:32 +03:00
committed by teamcity
parent c1904004c4
commit 67e6687e89
6 changed files with 45 additions and 16 deletions
@@ -0,0 +1,12 @@
// FIR_IDENTICAL
// SKIP_TXT
sealed class Outer {
class NestedSubClass : Outer() {
fun foo() {
Inner()
}
}
private inner class Inner
}