Files
kotlin-fork/idea/testData/intentions/importMember/FromCompanionObject.kt
T
2015-11-10 17:23:11 +03:00

9 lines
188 B
Kotlin
Vendored

// INTENTION_TEXT: "Add import for 'kotlin.text.Regex.Companion.escape'"
// WITH_RUNTIME
import kotlin.text.Regex
fun foo() {
Regex.<caret>escape("")
Regex.Companion.escape("")
}