Files
kotlin-fork/compiler/testData/ir/irText/expressions/thisOfGenericOuterClass.kt
T
Dmitriy Novozhilov d4f55894b4 [FIR2IR] Properly calculate dispatch receiver type for fake overrides
If some function is not fake-override, then its type should be just
  default type of containing class
For fake overrides the default type calculated in the following way:
1. Find first overridden function, which is not fake override
2. Take its containing class
3. Find supertype of current containing class with type constructor of
   class from step 2

^KT-60252 Fixed
2023-08-25 21:06:15 +00:00

10 lines
187 B
Kotlin
Vendored

// FIR_IDENTICAL
class Outer<T>(val x: T) {
open inner class Inner(val y: Int)
}
fun Outer<Int>.test() =
object : Outer<Int>.Inner(42) {
val xx = x + y
}