id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc
565,Lexically replace variable does not work on outer variable,szabgab,azawawi,"{{{
my $x = 23;

{
	my $x = 42;
	print $x;
}

print $x;
}}}

Put the cursor between $ and x in the last $x, right-click and lexically replace by $z. All 4 occurances of $x will be replaced.

",defect,closed,major,,Refactoring Perl 5,0.46,not relevant,refactoring,
