[FIR] Approximate captured types during approximation of local types

^KT-57222 Fixed
This commit is contained in:
Dmitriy Novozhilov
2023-04-27 16:11:12 +03:00
committed by Space Team
parent ad002437b4
commit f7733e819d
17 changed files with 127 additions and 5 deletions
@@ -0,0 +1,9 @@
// ISSUE: KT-57222
interface Invariant<A>
fun Invariant<in Number>.publicFunc() = privateFunc()
private fun <B> Invariant<B>.privateFunc() = object : Invariant<B> {}
fun box() = "OK"