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

6 lines
95 B
Kotlin
Vendored

// WITH_RUNTIME
package my.sample
fun test() {
0.let { true }.let<caret> { println(it) }
}