blob: 7272048a1bd4032b054d97dc2d4ae2354b1600f6 [file] [log] [blame]
-- { dg-do compile }
package Pack2 is
type Rec is record
Ptr: access Character;
Int :Integer;
end record;
type Table is array (1..2) of rec;
pragma Pack (Table);
end Pack2;