blob: b49185d6dd807cb0f1dcb1483d00f0d7efc9927b [file] [log] [blame]
Duncan Sandsa844fc422008-01-03 00:17:02 +00001-- RUN: %llvmgcc -c %s
2package Field_Order is
3 type Tagged_Type is abstract tagged null record;
4 type With_Discriminant (L : Positive) is new Tagged_Type with record
5 S : String (1 .. L);
6 end record;
7end;