Groovy: fix inline in GString, replaceWithExpression
[fedora-idea.git] / plugins / groovy / testdata / groovy / refactoring / inlineLocal / varInGString.test
blob2c4c76f1a84cb5f31533b3b2656af2f852e57fcf
1 def <begin>s<end>="$x+$y"
2 print "${s}wow+$s"
3 -----
4 <caret>print "$x+${y}wow+$x+$y"