89779b5013
the first removes curly braces from a simple name variable, ${x} -> $x
and the second does the opposite $x -> ${x}
5 lines
74 B
Kotlin
Vendored
5 lines
74 B
Kotlin
Vendored
// IS_APPLICABLE: true
|
|
fun foo() {
|
|
val x = 4
|
|
val y = "$<caret>x"
|
|
} |