Given the following contents of a program window:
When clicking on "xyz" anywhere outside of "bar", all occurrences (including those inside of "bar") are highlighted. However, when clicking on "xyz" inside of "bar", nothing is highlighted.
Code:
procedure foo is
xyz number := 0;
procedure bar is
begin
xyz := xyz + 1;
dbms_output.put_line(xyz);
end bar;
begin
xyz := xyz + 1;
bar();
end foo;