PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gnat.dg / opt6.ads
blobf04985316425cdcf40ddb8bcc4af00a6a5a1b6a0
1 package Opt6 is
3 type String_Access is access all String;
4 type String_List is array (Positive range <>) of String_Access;
5 type String_List_Access is access all String_List;
7 type Command_Line_Iterator is record
8 Params : String_List_Access;
9 Current : Natural;
10 end record;
12 function Current_Parameter (Iter : Command_Line_Iterator) return String;
14 end Opt6;