aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gnat.dg/derived_type4.adb
blob: 22c41ecc64894e93f9de92818202071c818048a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
-- { dg-do compile }

procedure Derived_Type4 is

  type Root (D : Positive) is record
     S : String (1 .. D);
  end record;

  subtype Short is Positive range 1 .. 10;
  type Derived (N : Short := 1) is new Root (D => N);

  Obj : Derived;

begin
  Obj := (N => 5, S => "Hello");
end;