Files
kotlin-fork/idea/testData/intentions/introduceImportAlias/withReceiver4.kt
T
Dmitry Gridin 5927032143 Fix "Introduce import alias" on extensions
#KT-30214 Fixed
2019-03-04 10:15:52 +03:00

9 lines
97 B
Kotlin
Vendored

package my.sample
class A
fun A.check() {}
fun test() {
(my.sample.A::check<caret>)(A())
}