diff options
Diffstat (limited to 'gcc/testsuite/gnat.dg/warn10_pkg.ads')
-rw-r--r-- | gcc/testsuite/gnat.dg/warn10_pkg.ads | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gcc/testsuite/gnat.dg/warn10_pkg.ads b/gcc/testsuite/gnat.dg/warn10_pkg.ads new file mode 100644 index 00000000000..ac5b676777d --- /dev/null +++ b/gcc/testsuite/gnat.dg/warn10_pkg.ads @@ -0,0 +1,12 @@ +package Warn10_Pkg is + + Size : constant Natural := 100; + type My_Array is array(1..Size, 1..Size) of Float; + + type Root is tagged record + Input_Values : My_Array; + end record; + + function Get_Input_Value( Driver : Root; I, J : Natural) return Float; + +end Warn10_Pkg; |