Files
kotlin-fork/idea/testData/refactoring/introduceParameter/stringTemplates/extractIntegerLiteral.kt
T

7 lines
155 B
Kotlin
Vendored

fun foo(param: Int): String {
val x = "a1234_"
val y = "-4123a"
val z = "+1243a"
val u = 123
return "ab<selection>123</selection>def"
}