be6409f0af
#KT-49812 Fixed #KT-49936 Fixed
6 lines
106 B
Kotlin
Vendored
6 lines
106 B
Kotlin
Vendored
data class A(val x: String) {
|
|
val Int.x: Int get() = this
|
|
}
|
|
|
|
fun box(): String = A("OK").component1()
|