PR testsuite/86649
[official-gcc.git] / gcc / testsuite / gnat.dg / discr26.ads
blob5a428f2bfed8f9fc919cd5c72564d1c1c8933294
1 with Discr26_Pkg;
3 package Discr26 is
5 type T1 (D : Integer) is record
6 case D is
7 when 1 => I : Integer;
8 when others => null;
9 end case;
10 end record;
12 type My_T1 is new T1 (Discr26_Pkg.N);
14 procedure Proc;
16 end Discr26;