aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/warn30.ads
blob: 3b608169e62ca690e21ded00743788e15923630c (plain)
1
2
3
4
5
6
with Interfaces; use type Interfaces.Integer_64;

package Warn30 is
   procedure Incr (X : in out Interfaces.Integer_64) with
     Post => X = X'Old + 1;
end Warn30;