URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gnat.dg/] [warn3.adb] - Rev 310
Go to most recent revision | Compare with Previous | Blame | View Log
-- { dg-do compile } -- { dg-options "-gnatwu" } with Ada.Command_Line; use Ada.Command_Line; with Text_IO; use Text_IO; procedure warn3 is type Weekdays is (Sun, Mon, Tue, Wed, Thu, Fri, Sat); begin if Argument_Count > 0 then Put_Line (Argument (1) & " is weekday number" & Integer'Image (Weekdays'Pos (Weekdays'Value (Argument (1))))); end if; end;
Go to most recent revision | Compare with Previous | Blame | View Log