diff --git a/plugins/groovy/testdata/groovy/refactoring/rename/InplaceRename_after.groovy b/plugins/groovy/testdata/groovy/refactoring/rename/InplaceRename_after.groovy new file mode 100644 index 000000000000..f3b58860b11e --- /dev/null +++ b/plugins/groovy/testdata/groovy/refactoring/rename/InplaceRename_after.groovy @@ -0,0 +1,12 @@ +class X { + def foo = 2 + + def a() { + def foo = 3; + + foo = 5 + print foo + + print this.foo + } +} \ No newline at end of file