* snames.ads-tmpl (Name_Ivdep): New pragma-related name.
[official-gcc.git] / gcc / testsuite / gnat.dg / class_wide2.ads
bloba1acc223e579756db708ba9e7a856f20618b4c03
1 package Class_Wide2 is
3 type Root_1 (V : Integer) is tagged record
4 null;
5 end record;
7 type Child is new Root_1 (1) with null record;
9 type Class_Acc is access all Child'Class;
11 type Grand_Child is new Child with record
12 null;
13 end record;
15 procedure Initialize;
17 end Class_Wide2;