2018-03-15 Steven G. Kargl <kargl@gcc.gnu.org>
[official-gcc.git] / gcc / testsuite / gnat.dg / incomplete6.adb
blobb2bf64297e185376a6d89e9420c8e71373f4ddcd
1 -- { dg-do compile }
3 package body Incomplete6 is
5 function "=" (Left, Right : Vint) return Boolean is
6 begin
7 return Left.Value = Right.Value;
8 end;
10 function "=" (Left, Right : Vfloat) return Boolean is
11 begin
12 return Left.Value = Right.Value;
13 end;
15 end;