inquire-complex.f90

来自「用于进行gcc测试」· F90 代码 · 共 15 行

F90
15
字号
! { dg-do run }! PR 23428:  Inquire(iolength) used to give the wrong result.program main  implicit none  integer s4, s8    complex(kind=8) c8  complex(kind=4) c4    inquire (iolength=s4) c4  inquire (iolength=s8) c8  if (s4 /= 8 .or. s8 /= 16) call abortend program main

⌨️ 快捷键说明

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