IDEA-51514 Move statement to move lines in multiline Groovy string literals
[fedora-idea.git] / plugins / groovy / testdata / groovy / actions / moveStatement / aroundMultilineString.test
blobf9f0e95eb9b6ecdc9e70e81fd5d2aaf78a8a3c69
1 def x = "aa"<caret>
2 def a = """
3 aaa
4   bbb
5 """
6 -----
7 def a = """
8 aaa
9   bbb
10 """
11 def x = "aa"<caret>