comma_format_extension_3.f

来自「linux下编程用 编译软件」· F 代码 · 共 17 行

F
17
字号
! PR libfortran/15332 and PR fortran/13257! We used to accept this as an extension but! did do the correct thing at runtime.! Note the missing , before i1 in the format.! { dg-do run }! { dg-options "" }      character*12 c      write (c,100) 0, 1      if (c .ne. 'i = 0, j = 1') call abort            write (c,100) 0      if (c .ne. 'i = 0       ') call abort 100  format ('i = 'i1,:,', j = ',i1)      end

⌨️ 快捷键说明

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