aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/sso19.adb
blob: 497d987441afbfe1b98d30d77164d2c5bf187e35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--  { dg-do run }
--  { dg-options "-O2" }

with SSO19_Pkg; use SSO19_Pkg;

procedure SSO19 is
  R : constant Rec := (D => (I => 8, F => 4.6095713E-41));

begin
  if not Is_Valid (R) then
    raise Program_Error;
  end if;
end;