(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.dg/
pr77959.f90
! PR middle-end/77959
! { dg-do compile }
! { dg-options "-O2" }

program pr77959
  interface
    subroutine foo(x)  ! { dg-warning "Type mismatch in argument" }
      real :: x
    end
  end interface
  call foo(1.0)
end
subroutine foo(x)
  complex :: x
  x = x + 1
end