summaryrefslogtreecommitdiff
path: root/test/FrontendAda/Support/unc_constructor.ads
blob: d6f8db50d897d212f0a690bb50f21e94497d4e51 (plain)
1
2
3
4
5
6
7
8
package Unc_Constructor is
   type C is null record;
   type A is array (Positive range <>) of C;
   A0 : constant A;
   procedure P (X : A);
private
   A0 : aliased constant A := (1 .. 0 => (null record));
end;