Files
kotlin-fork/idea/testData/intentions/introduceImportAlias/withReceiver2.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
179 B
Plaintext
Vendored

// WITH_RUNTIME
package my.sample
import my.sample.bar as bar1
val Any.foo: Any get() = this
val Any.bar: Any get() = this
fun test() {
1.foo.foo.bar1.foo.bar1.toString()
}