Increase timeout factor for hppa*-*-* in gcc.dg/long_branch.c
[official-gcc.git] / gcc / testsuite / gnat.dg / generic_inst2.ads
blob3124a1d3b75545808d6b22570edd12222249e597
1 with Generic_Inst2_C;
3 package Generic_Inst2 is
4 type T is private;
5 procedure Foo (X : not null access T);
6 package CI is new Generic_Inst2_C (T, Foo => Foo);
7 private
8 type S is access Integer;
9 type T is new S;
10 end;