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/] [aggr4.adb] - Rev 399
Go to most recent revision | Compare with Previous | Blame | View Log
-- { dg-do compile } -- { dg-options "-gnatws" } procedure aggr4 is type Byte is range 0 .. 2**8 - 1; for Byte'Size use 8; type Time is array (1 .. 3) of Byte; type UTC_Time is record Values : Time; end record; type Local_Time is record Values : Time; end record; for Local_Time use record Values at 0 range 1 .. 24; end record; LOC : Local_Time; UTC : UTC_Time; begin UTC.Values := LOC.Values; UTC := (Values => LOC.Values); end;
Go to most recent revision | Compare with Previous | Blame | View Log