Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gnat.dg / discr9.ads
blob5edde81bff8d55244312ced115bc234647bea693
1 package Discr9 is
3 type IArr is Array (Natural range <>) of Integer;
4 type CArr is Array (Natural range <>) of Character;
6 type Var_R (D1 : Boolean; D2 : Boolean) is record
7 case D1 is
8 when True =>
9 L : IArr (1..4);
10 M1, M2 : CArr (1..16);
11 when False =>
12 null;
13 end case;
14 end record;
16 type R (D1 : Boolean; D2 : Boolean) is record
17 Field : Var_R (D1, D2);
18 end record;
20 procedure Proc (From : in R; To : out R);
22 end Discr9;