2010-11-25 22:21:59 +01:00
|
|
|
-- RUN: %llvmgcc -S %s
|
2008-01-03 01:17:02 +01: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;
|