direct_io_6.f90
来自「用于进行gcc测试」· F90 代码 · 共 17 行
F90
17 行
! { dg-do run }! pr31366 last record truncated for read after short write, direct access file.! test case derived from pr, submitted by jerry delisle <jvdelisle@gcc.gnu.org program test character(len=8) :: as_written, as_read character(1) :: byte as_written = "12345678" open (76, access="direct", recl=12, status="scratch") write(76, rec=1) as_written write(76, rec=2) as_written read(76, rec=1) as_read, byte, byte, byte, byte read(76, rec=2, err=3) as_read, byte, byte, byte, byte stop 3 call abort() end program test
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?