Files
kotlin-fork/compiler/testData/codegen/box/dataClasses/components/kt49936.kt
T
Alexander Udalov be6409f0af Fix property lookup in data class component generation
#KT-49812 Fixed
 #KT-49936 Fixed
2021-12-02 01:43:39 +01:00

6 lines
106 B
Kotlin
Vendored

data class A(val x: String) {
val Int.x: Int get() = this
}
fun box(): String = A("OK").component1()