Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
gnat.dg
/
opt22.adb
blob: 6ea2440e97017984101b825bf08f29fe1a6ea594 [
file
] [
log
] [
blame
]
--
{
dg
-
do
run
}
--
{
dg
-
options
"-O"
}
with
Opt22_Pkg
;
use
Opt22_Pkg
;
procedure
Opt22
is
procedure
Go
(
S
:
String
)
is
begin
begin
Fail
;
exception
when
Constraint_Error
=>
Put
(
"the "
&
S
);
end
;
Put
(
"the "
&
S
);
end
;
begin
Go
(
"message"
);
end
;