aggr4.adb

来自「用于进行gcc测试」· ADB 代码 · 共 28 行

ADB
28
字号
--  { 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;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?