compiler: give error for non-int arguments to make
[official-gcc.git] / gcc / testsuite / gnat.dg / aggr9_pkg.ads
blobc7c7b9e10b8a292994f3e5d7fb9452ef46388b7b
1 package Aggr9_Pkg is
3 type Byte is range 0 .. 255;
5 type R1 is
6 record
7 A,B : Byte;
8 end record;
10 type R2 is
11 record
12 F : R1;
13 end record;
15 procedure Send (M : R2);
17 end Aggr9_Pkg;