Files
kotlin-fork/idea/testData/copyPaste/imports/AlreadyImportedExtensions.kt
T
2015-04-09 19:09:08 +03:00

9 lines
165 B
Kotlin
Vendored

// RUNTIME
fun foo(s: String) {
<selection> s.extensionFun()
for (i in s.indices) {
val pair = s to null
val s1 = s + "1"
}
</selection>}