6675d7814c
* Add inspection to replace String.format with string templates #KT-14779 Fixed * KT-14779 Fixed
8 lines
143 B
Kotlin
Vendored
8 lines
143 B
Kotlin
Vendored
// RUNTIME_WITH_FULL_JDK
|
|
|
|
fun test() {
|
|
val foo = 1
|
|
val bar = 2
|
|
|
|
<caret>java.lang.String.format("foo is %s, bar is %s.", foo, bar)
|
|
} |