Files
kotlin-fork/idea/testData/refactoring/introduceVariable/stringTemplates/extractIntegerLiteral.kt
T
2015-11-24 20:40:15 +03:00

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"
}