aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/ghost1.ads
blob: afbcc2fbf18025b4ef7c7b32b75686c86eb0778e (plain)
1
2
3
4
5
6
7
8
9
package Ghost1 is
   type Ghost_Typ is record
      Data : Integer;
   end record
     with Ghost;

   procedure Spec_And_Body (Obj : Ghost_Typ)
     with Ghost;
end Ghost1;