aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gnat.dg/oconst2.adb
blob: d4f45ad5d040546f6160ff11a67dae572829f3b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
-- { dg-do compile }
-- { dg-final { scan-assembler-not "elabs" } }

package body OCONST2 is

  procedure check (arg : R) is
  begin
    if arg.u /= 1
       or else arg.b.i1 /= 2
    then
      raise Program_Error;
    end if;
  end;

end;