Files
kotlin-fork/plugins/kapt3/kapt3-compiler/testData/converter/delegateToList.kt
T
Alexander Udalov d32268c5cb JVM: do not assume that methods have body in BridgeLowering
They don't have bodies in the kapt stub generation mode.

 #KT-58787 Fixed
2023-05-25 12:07:58 +00:00

4 lines
92 B
Kotlin
Vendored

class MyList<out T : Any>(
private val wrappedList: List<T>,
) : List<T> by wrappedList