summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/inline1.adb
blob: d62b8596dea93281df74793562cf993ce9be5cc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
-- { dg-do compile }

with Inline1_Pkg; use Inline1_Pkg;

procedure Inline1 is
   F : Float := Invalid_Real;
begin
   if Valid_Real (F) then
      F := F + 1.0;
   end if;
end;