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

11 lines
125 B
Plaintext
Vendored

package my.sample
import my.sample.check as check1
class A
fun A.check() {}
fun test() {
(my.sample.A::check1)(A())
}