aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/opt35_pkg.adb
blob: 8e868c49d975cfe4f937f10487b4365c94122edb (plain)
1
2
3
4
5
6
7
8
9
10
11
package body Opt35_Pkg is

  function F (I : Integer) return Integer is
  begin
    if I = 0 then
       raise E;
    end if;
    return -I;
  end;

end Opt35_Pkg;