view gcc/testsuite/gfortran.dg/warn_argument_mismatch_1.f90 @ 144:8f4e72ab4e11

fix segmentation fault caused by nothing next cur_op to end
author Takahiro SHIMIZU <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Sun, 23 Dec 2018 21:23:56 +0900
parents 04ced10e8804
children
line wrap: on
line source

! { dg-do compile }
! { dg-options "-std=legacy -Wno-argument-mismatch" }
!
! No warnings should be output here with -Wno-argument-mismatch.
!

subroutine s1(x)
  implicit none
  integer, intent(in) :: x
  print *, x
end subroutine

subroutine s2(x)
  implicit none
  integer, intent(in) :: x(1)
  print *, x
end subroutine

subroutine s3(x)
  implicit none
  integer, intent(in) :: x(2)
  print *, x
end subroutine

implicit none
integer :: x, y(1)
real :: r

call s1(r)
call s1(y)
call s2(x)
call s3(y)

end