ubuntu-buildroot/output/build/host-gcc-initial-11.4.0/gcc/testsuite/gnat.dg/warn30.adb

10 lines
215 B
Ada

-- { dg-do compile }
-- { dg-options "-gnatwa" }
with Interfaces; use Interfaces;
package body Warn30 is
procedure Incr (X : in out Interfaces.Integer_64) is
begin
X := X + 1;
end Incr;
end Warn30;