1-- Compile this file with: 2-- gcc -g -c test.adb 3 4package body Test is 5 6function First_Function (A: My_Int_Array) return My_Int_Array is 7begin 8 return A; 9end First_Function; 10 11 12function Second_Function (A: My_Index) return My_Index is 13begin 14 return My_Index'Last; 15end Second_Function; 16 17end Test; 18