view gcc/testsuite/gnat.dg/tf_interface_1.ads @ 144:8f4e72ab4e11

fix segmentation fault caused by nothing next cur_op to end
author Takahiro SHIMIZU <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Sun, 23 Dec 2018 21:23:56 +0900
parents 04ced10e8804
children
line wrap: on
line source

with Ada.Streams;
with Ada.Streams.Stream_IO; use Ada.Streams.Stream_IO;
package TF_INTERFACE_1 is

   type CF_INTERFACE_1 is interface;

   procedure P_PROCEDURE_1 (This : in out CF_INTERFACE_1)
   is abstract;

   procedure Read (Stream : not null access ada.Streams.Root_stream_Type'Class;
                   Item : out CF_INTERFACE_1) is null;
   for CF_INTERFACE_1'Read use Read;

   procedure Write (Stream : not null access ada.Streams.Root_stream_Type'Class;
                   Item : CF_INTERFACE_1) is null;
   for CF_INTERFACE_1'Write use Write;

   procedure Get_It (Handle : Stream_Access; It : out CF_Interface_1'class);
end TF_INTERFACE_1;