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

9 lines
154 B
Kotlin
Vendored

// WITH_RUNTIME
package my.sample
val Any.foo: Any get() = this
val Any.bar: Any get() = this
fun test() {
1.foo.foo.bar<caret>.foo.bar.toString()
}