aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gnat.dg/oconst3.ads
blob: 6a0094b57e97e4c349772272933f3e296a03f227 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package OCONST3 is

  type bit is (zero, one);
  type u8 is mod 2**8;

  type Base is record
    i1 : Integer;
  end Record;

  type R is record
    u : u8;
    f : bit;
    b : Base;
  end record;

  for R use record
    u at 0 range 0 .. 7;
    f at 1 range 0 .. 0;
    b at 1 range 1 .. 32;  -- unaligned SImode bitfield
  end record;

  My_R : constant R := (u=>1, f=>one, b=>(i1=>3));

  procedure check (arg : R);

end;