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

6 lines
142 B
Kotlin
Vendored

fun foo(param: Int): String {
val x = "xyfalsez"
val y = "xyFalsez"
val z = false
return "ab<selection>false</selection>def"
}