Files
kotlin-fork/idea/testData/intentions/replaceSubstringWithTake/constantAsFirstArgument.kt
T
2016-01-13 19:05:50 +03:00

8 lines
110 B
Kotlin
Vendored

// IS_APPLICABLE: false
// WITH_RUNTIME
const val x = 0
fun foo(s: String) {
s.substring<caret>(x, 10)
}