File: a.adb

package info (click to toggle)
libgnatcoll 1.6gpl2014-6
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 22,760 kB
  • ctags: 10,162
  • sloc: ada: 132,013; ansic: 94,291; python: 3,762; sh: 2,781; cpp: 1,394; makefile: 342; xml: 31; sql: 6
file content (25 lines) | stat: -rw-r--r-- 478 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
pragma Warnings (Off);
package body A is

   procedure Foo is separate;
   procedure My_Procedure is
      Local1 : Integer;
      Local2 : My_Record;
   begin
      My_Procedure2;
      My_Procedure3;
   end My_Procedure;

   procedure My_Procedure2 is
      Local3 : Integer;
   begin
      My_Procedure3;
   end My_Procedure2;

   procedure My_Procedure3 is
      Local1 : Integer; --  Do not mix with the one above
   begin
      My_Procedure;
   end My_Procedure3;

end A;