Increase timeout factor for hppa*-*-* in gcc.dg/long_branch.c
[official-gcc.git] / gcc / testsuite / gnat.dg / discr56_pkg1.ads
blob385263263366ccfd4297bff9f7933d468a1f5643
1 package Discr56_Pkg1 is
3 type Buffer (Size : Positive) is limited private;
5 private
7 type Arr is array (Natural range <>) of Integer;
9 protected type Buffer (Size : Positive) is
10 private
11 Store : Arr (0..Size);
12 end Buffer;
14 end Discr56_Pkg1;