📄 associated_1.f90
字号:
! { dg-do run }! PR 25292: Check that the intrinsic associated works with functions returning! pointers as argumentsprogram test real, pointer :: a, b allocate(a) if (.not.associated(x(a))) call abort () if (.not.associated(a, x(a))) call abort () nullify(b) if (associated(x(b))) call abort () allocate(b) if (associated(x(b), x(a))) call abort ()contains function x(a) RESULT(b) real, pointer :: a,b b => a end function xend program test
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -