view gcc/testsuite/gnat.dg/opt11.ads @ 118:fd00160c1b76

ifdef TARGET_64BIT
author mir3636
date Tue, 27 Feb 2018 15:01:35 +0900
parents 04ced10e8804
children
line wrap: on
line source

package Opt11 is

   type String_Ptr is access constant String;

   type Form_Type is (Qualified, Unqualified);

   type Rec is record
      N1, N2, N3 : Natural;
      Fixed : String_Ptr;
      Form : Form_Type;
      Is_Local : Boolean := True;
   end record;
   pragma Pack (Rec);

   procedure Proc;

end Opt11;