2018-03-15 Steven G. Kargl <kargl@gcc.gnu.org>
[official-gcc.git] / gcc / testsuite / gnat.dg / case_null.ads
blob0e47d4200ba0f32772078f96c3bf6701b6a9ca91
1 package Case_Null is
2 type T is (a, b, c, d, e);
4 subtype S is T range b .. d;
6 subtype S1 is S range a .. d;
7 -- Low bound out of range of base subtype.
9 procedure P1 (X : T);
11 end Case_Null;