compiler: give error for non-int arguments to make
[official-gcc.git] / gcc / testsuite / gnat.dg / opt13_pkg.ads
blobf52f782f4d6f49f23a6d81d55ecd54db8083c32a
1 package Opt13_Pkg is
3 N : Natural := 0;
5 type My_Type is private;
7 procedure Allocate (T : out My_Type);
9 private
11 type Data;
13 type My_Type is access Data;
15 end Opt13_Pkg;