aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.ada/complete/pck.ads
blob: d897cbc5204c597b91cddc7faeace7f50ede2f1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package Pck is

   My_Global_Variable : Integer := 1;

   Exported_Capitalized : Integer := 2;
   pragma Export (C, Exported_Capitalized, "Exported_Capitalized");

   Local_Identical_One : Integer := 4;
   Local_Identical_Two : Integer := 8;

   External_Identical_One : Integer := 19;

   package Inner is
      Inside_Variable : Integer := 3;
   end Inner;

   procedure Proc (I : Integer);

end Pck;