PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gnat.dg / range_check2.adb
blob33172f155e5a460c14862100ba08b8d8ea4d5cdf
1 -- { dg-do compile }
2 -- { dg-options "-O2" }
4 procedure Range_Check2 is
6 subtype Block_Subtype is String(1 .. 6);
7 type Color is (Black, Red, Green, Yellow, Blue, Magenta, Cyan, White);
8 Foregrnd_Color : Color := White;
9 Block : Block_Subtype := "123456";
11 begin
12 Foregrnd_Color := Color'Val(Integer'Value(Block(5 .. 6)));
13 end;