Files
kotlin-fork/compiler/testData/ir/irText/classes/dataClasses/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
84 B
Kotlin
Vendored

// SKIP_KT_DUMP
data class A(val x: Int) {
val String.x: String get() = this
}