aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/split_args.adb
blob: 3ea39dc2c04ba37a63e652d91f5dd36ad24c66c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--  { dg-do run }
--  { dg-options "-gnatws" }

with System.OS_Lib; use System.OS_Lib;

procedure Split_Args is
   X : constant Argument_List_Access :=
     Argument_String_To_List (" -v");
begin
   if X'Length /= 1 then
      raise Program_Error;
   end if;
end Split_Args;