analyzer: Fix PR analyzer/101980
[official-gcc.git] / gcc / testsuite / gnat.dg / warn30.adb
blob841c70eb22d626169b78c5e9165d9dcebb3e3dd2
1 -- { dg-do compile }
2 -- { dg-options "-gnatwa" }
3 with Interfaces; use Interfaces;
5 package body Warn30 is
6 procedure Incr (X : in out Interfaces.Integer_64) is
7 begin
8 X := X + 1;
9 end Incr;
10 end Warn30;