view gcc/testsuite/gfortran.dg/pad_source_2.f @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents
children
line wrap: on
line source

c { dg-do run }
c { dg-skip-if "non-standard options" { *-*-* } { "-ffixed-line-length*" } }
c { dg-options "-fpad-source" }
      character(80) a
      a = 'abc
     +def'
      if (a(:61) .ne. 'abc') stop 1
      if (a(62:) .ne. 'def') stop 2
      end