PR tree-optimization/86415 - strlen() not folded for substrings within constant arrays
[official-gcc.git] / gcc / testsuite / gnat.dg / opt22_pkg.adb
blobfa05dfe3a5509765c672d0bd9c490e13e51eb227
1 package body Opt22_Pkg is
3 procedure Fail is
4 begin
5 raise Constraint_Error;
6 end;
8 procedure Put (S : String) is
9 begin
10 if S /= "the message" then
11 raise Program_Error;
12 end if;
13 end;
15 end Opt22_Pkg;