view gcc/testsuite/gfortran.dg/lto/pr41576_1.f90 @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900 (2017-10-27)
parents
children 84e7813d76e9
line wrap: on
line source
program test
  common /bar/ c, d
  integer(4) :: c, d
interface
  subroutine foo()
  end subroutine
end interface
  call foo
  if (c/=1 .or. d/=2) call abort
end program test