aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/validity_check2.adb
blob: f349cf1603630234c67434c5b921346e3abc443b (plain)
1
2
3
4
5
6
7
8
9
10
11
--  { dg-do compile }
--  { dg-options "-gnatVi -gnatws" }

with Validity_Check2_Pkg; use Validity_Check2_Pkg;

procedure Validity_Check2 (R : access Rec) is
begin
  if Op_Code_To_Msg (R.Code) in Valid_Msg then
    raise Program_Error;
  end if;
end;