⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 self_aggregate_with_array.adb

📁 用于进行gcc测试
💻 ADB
字号:
-- { dg-do run }procedure self_aggregate_with_array is   type Value_Bounds is array (1 .. 2) of Natural;   type Sensor is record      Value  : Natural;      Bounds : Value_Bounds;   end record;   Pressure : Sensor;begin   Pressure.Value := 256;   Pressure := (Value => Pressure.Value, Bounds => (1, 2));   if Pressure.Value /= 256 then      raise Program_Error;   end if;end;

⌨️ 快捷键说明

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