2010-11-25 21:21:59 +00:00
|
|
|
-- RUN: %llvmgcc -S %s
|
2008-01-03 00:17:02 +00:00
|
|
|
package Field_Order is
|
|
|
|
type Tagged_Type is abstract tagged null record;
|
|
|
|
type With_Discriminant (L : Positive) is new Tagged_Type with record
|
|
|
|
S : String (1 .. L);
|
|
|
|
end record;
|
|
|
|
end;
|