Files
kotlin-fork/idea/testData/refactoring/introduceVariable/multiDeclarations/unresolvedComponent3.kt
T
2015-11-26 21:22:16 +03:00

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>
}