aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gnat.dg/handle_and_return.adb
blob: b40dbafb37dd87e22bb313952d850f9dd9d1dc8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
-- { dg-do run }
-- { dg-options "-gnatp -O2" }

with Raise_Ce;

procedure Handle_And_Return is
begin
   begin
      Raise_CE;
      return;
   exception
      when others => null;
   end;

   begin
      Raise_CE;
      return;
   exception
      when others => null;
   end;
end;