PR tree-optimization/86415 - strlen() not folded for substrings within constant arrays
[official-gcc.git] / gcc / testsuite / gnat.dg / discr36.ads
blob586a9740dce362151961627601805f07b42fded8
1 package Discr36 is
3 type R (D : Boolean := True) is record
4 case D is
5 when True => I : Integer;
6 when False => null;
7 end case;
8 end record;
10 function N return Natural;
12 end Discr36;