blob: fa05dfe3a5509765c672d0bd9c490e13e51eb227 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package body Opt22_Pkg is
procedure Fail is
begin
raise Constraint_Error;
end;
procedure Put (S : String) is
begin
if S /= "the message" then
raise Program_Error;
end if;
end;
end Opt22_Pkg;
|