7a40239e64
#KT-6262
12 lines
168 B
Kotlin
Vendored
12 lines
168 B
Kotlin
Vendored
class A
|
|
|
|
operator fun A.component1() = 1
|
|
operator fun A.component2() = 2
|
|
|
|
class B {
|
|
operator fun A.component3() = 3
|
|
}
|
|
|
|
fun test() {
|
|
<selection>A()</selection>
|
|
} |