itypes.adb

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

ADB
23
字号
--  { dg-do compile }package body itypes is   Size : constant := 10;   type Arr is array (1 .. size) of Integer;      type Rec is record      Field1 : Arr := (others => 0);      Field2 : Arr := (others => 0);      Field3 : Arr := (others => 0);      Field4 : Arr := (others => 0);      Field5 : Arr := (others => 0);      Field6 : Arr := (others => 0);      Field7 : Arr := (others => 0);   end record;      procedure Proc is      Temp1 : Rec;   begin         null;   end;    end;                 

⌨️ 快捷键说明

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