mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-30 13:23:50 +08:00
10 lines
173 B
Ada
10 lines
173 B
Ada
package body Pck is
|
|
|
|
procedure Proc (I : Integer) is
|
|
Not_In_Scope : Integer := 77;
|
|
begin
|
|
Inner.Inside_Variable := Not_In_Scope + I;
|
|
end Proc;
|
|
|
|
end Pck;
|