rt_gccstream/gcc/testsuite/gnat.dg/ice_types.ads

7 lines
150 B
Ada

package ICE_Types is
type Float_View_T is private;
procedure Initialize (X : out Float_View_T);
private
type Float_View_T is new Float;
end;