PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gnat.dg / debug6_pkg.ads
blobdfc9744079b806afc345d0ade7a9c94ed8dd4bfc
1 package Debug6_Pkg is
3 type Vkind is (Int, Undefined);
4 for Vkind use (Int => -2 ** 31, Undefined => 0);
6 type Value (Kind : Vkind) is record
7 case Kind is
8 when Undefined => null;
9 when Int => Value : Integer;
10 when others => null;
11 end case;
12 end record;
14 procedure Process (V : Value);
16 end Debug6_Pkg;