mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-30 05:14:18 +08:00
11 lines
228 B
Ada
11 lines
228 B
Ada
with Pck; use Pck;
|
|
|
|
procedure Foo is
|
|
Some_Local_Variable : Integer := 1;
|
|
External_Identical_Two : Integer := 74;
|
|
begin
|
|
My_Global_Variable := Some_Local_Variable + 1; -- START
|
|
Proc (External_Identical_Two);
|
|
end Foo;
|
|
|