profile_warning_p.adb
来自「用于进行gcc测试」· ADB 代码 · 共 21 行
ADB
21 行
package body profile_warning_p is procedure Proc is begin null; end Proc; task type T is end T; task body T is begin null; end; type A_T is access T; procedure Do_Stuff is P : A_T; begin P := new T; end Do_Stuff;end;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?