view gcc/testsuite/gnat.dg/predicate3.adb @ 138:fc828634a951

merge
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Thu, 08 Nov 2018 14:17:14 +0900
parents 84e7813d76e9
children
line wrap: on
line source

--  { dg-do run }
--  { dg-options "-gnata" }

with Ada.Assertions, Ada.Text_IO;
use  Ada.Assertions, Ada.Text_IO;

with Predicate3_Pkg;
use  Predicate3_Pkg;

procedure Predicate3 is
   Got_Assertion : Boolean := False;
begin

   begin
      Put_Line (Good (C)'Image);
   exception
      when Assertion_Error =>
         Got_Assertion := True;
   end;

   if not Got_Assertion then
      raise Program_Error;
   end if;

   Got_Assertion := False;
   declare
      X: Priv;
   begin
      X := Wrong;
   exception
      when Assertion_Error =>
         Got_Assertion := True;
   end;

   if not Got_Assertion then
      raise Program_Error;
   end if;

end Predicate3;