📄 iso_fortran_env_3.f90
字号:
! { dg-do run }subroutine foo1 (x,y) use iso_fortran_env integer, intent(out) :: x, y x = numeric_storage_size y = character_storage_sizeendsubroutine foo2 (x,y) use iso_fortran_env, foo => numeric_storage_size integer, intent(in) :: x, y if (foo /= x .or. character_storage_size /= y) call abortendsubroutine foo3 (x,y) use iso_fortran_env, only : numeric_storage_size, character_storage_size integer, intent(in) :: x, y if (numeric_storage_size /= x .or. character_storage_size /= y) call abortendprogram test integer :: x, y call foo1(x,y) call foo2(x,y) call foo3(x,y)end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -