aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gnat.dg/discr32.adb
blob: 830a6dfd59a978eafc5360d386063d438d12f306 (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 "-gnatws" }

with Discr32_Pkg; use Discr32_Pkg;

procedure Discr32 is
begin

  if R1'Object_Size /= 32 then
    raise Program_Error;
  end if;

  if R2'Object_Size /= R'Object_Size then
    raise Program_Error;
  end if;

  if R3'Object_Size /= 64 then
    raise Program_Error;
  end if;

end;