6675d7814c
* Add inspection to replace String.format with string templates #KT-14779 Fixed * KT-14779 Fixed
9 lines
141 B
Kotlin
Vendored
9 lines
141 B
Kotlin
Vendored
// PROBLEM: none
|
|
// WITH_RUNTIME
|
|
|
|
fun test() {
|
|
val foo = 1
|
|
val bar = 2
|
|
|
|
<caret>String.format("foo is %s, bar is %d.", foo, bar)
|
|
} |