Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
importMember
/
FromCompanionObject.kt
blob: f049ebcfffb0d89890f0859084c37f8407eea971 [
file
] [
log
] [
blame
]
// INTENTION_TEXT: "Add import for 'kotlin.text.Regex.Companion.escape'"
// WITH_RUNTIME
import
kotlin
.
text
.
Regex
fun foo
()
{
Regex
.<
caret
>
escape
(
""
)
Regex
.
Companion
.
escape
(
""
)
}