d32268c5cb
They don't have bodies in the kapt stub generation mode. #KT-58787 Fixed
4 lines
92 B
Kotlin
Vendored
4 lines
92 B
Kotlin
Vendored
class MyList<out T : Any>(
|
|
private val wrappedList: List<T>,
|
|
) : List<T> by wrappedList
|