aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gnat.dg/test_prefix1.adb
blob: 8ed1ed5e5ebf445d680694a226e417f82bc56a21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
-- { dg-do run }

with prefix1; use prefix1;
procedure test_prefix1 is
   Val : Natural;
   Obj  : T;
--
begin
   for J in Obj.Func'Range loop
      Val := Obj.Func (J);
      if Val /= 2 ** J then
         raise Program_Error;
      end if;
   end loop;
end test_prefix1;