view gcc/testsuite/gfortran.dg/include_11.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 compile }
      subroutine foo
      implicit none
c We used to accept following in fixed mode.  Shall we at least
c warn about it?
include 'include_10.inc'
      i = 1
      end subroutine foo
      subroutine bar
c Likewise here.
      implicit none
  include'include_10.inc'
      i = 1
      end subroutine bar
      subroutine baz
c And here.
      implicit none
     include 'include_10.inc'
      i = 1
      end subroutine baz