Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / gnat.dg / discr49_rec1.ads
blob0a29b2aa47900ddf75fb332a31c1d81d1e7e0595
1 package Discr49_Rec1 is
2 type Parent (Discr_1 : Boolean; Discr_2 : Boolean) is private;
3 function Value (Obj : Parent) return Integer;
4 private
5 type Parent (Discr_1 : Boolean; Discr_2 : Boolean) is record
6 V : Integer := 123;
7 end record;
8 end Discr49_Rec1;