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

procedure self_aggregate_with_zeros is

   type Sensor is record
      Value  : Natural;
      A, B, C, D, E, F, G, H, I, J, K, L, M : Natural;
   end record;

   Pressure : Sensor;

begin
   Pressure.Value := 256;
   Pressure := (Pressure.Value, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);

   if Pressure.Value /= 256 then
      raise Program_Error;
   end if;
end;