discr_test2.adb

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

ADB
19
字号
--  { dg-do compile }procedure Discr_Test2 is   type Ptr is access all integer;   type Ar is array (Integer range <>) of Ptr;           type Inner (Discr : Integer) is record      Comp : Ar (1..Discr);   end record;   type Wrapper (Discr : Integer) is record      Comp :  Inner (Discr);   end record;   Val  : constant Wrapper := (0, Comp => <>);begin   null;end;

⌨️ 快捷键说明

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