d868410093
(cherry picked from commit 266f9d0)
6 lines
73 B
Kotlin
Vendored
6 lines
73 B
Kotlin
Vendored
// NO
|
|
val x = "Hello"
|
|
// YES
|
|
val y = "$x"
|
|
// NO
|
|
val z = "${y.hashCode()}" |