addr3.adb
来自「用于进行gcc测试」· ADB 代码 · 共 37 行
ADB
37 行
-- { dg-do compile }with text_io;with System;procedure addr3 is Type T_SAME_TYPE is new System.Address; Type T_OTHER_TYPE is new System.Address; I : constant integer := 0; procedure dum ( i : INTEGER ) is begin text_io.put_line ("Integer op"); null; end; procedure dum ( i : system.ADDRESS ) is begin null; end; procedure dum ( i : T_SAME_TYPE ) is begin null; end; procedure dum ( i : T_OTHER_TYPE ) is begin null; end;begin dum( I ); dum( 1 );end;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?