Files
kotlin-fork/idea/testData/inspections/removeSingleExpressionStringTemplate/test.kt
T
2016-08-02 15:31:16 +03:00

6 lines
73 B
Kotlin
Vendored

// NO
val x = "Hello"
// YES
val y = "$x"
// NO
val z = "${y.hashCode()}"