2018-03-15 Steven G. Kargl <kargl@gcc.gnu.org>
[official-gcc.git] / gcc / testsuite / gnat.dg / pointer_discr1_pkg3.ads
blobb27b5149ae96f1315aaa306fe285e08ed653ec36
1 package Pointer_Discr1_Pkg3 is
3 type T_TYPE is (One, Two, Three);
5 type T_DATA (D : T_TYPE);
7 type T_DATA (D : T_TYPE) is null record;
9 type T_WINDOW is access T_DATA;
11 procedure Map (Window : in T_WINDOW);
13 end Pointer_Discr1_Pkg3;