* fi.po: Update.
[official-gcc.git] / gcc / testsuite / gnat.dg / warn10_pkg.ads
blobac5b676777d6330b8955be34594b2607d03c4d5a
1 package Warn10_Pkg is
3 Size : constant Natural := 100;
4 type My_Array is array(1..Size, 1..Size) of Float;
6 type Root is tagged record
7 Input_Values : My_Array;
8 end record;
10 function Get_Input_Value( Driver : Root; I, J : Natural) return Float;
12 end Warn10_Pkg;