Example:
val x = "Hello" val y = "$x"
After the quick-fix is applied:
val x = "Hello" val y = x // <== Updated