blob: 8d6f2393c7b66a379e80aaaf1b58662cdddadcda [file] [log] [blame]
! { dg-do run }
! Tests the fix for the regression PR26716.
! Test contributed by Martin Reinecke <martin@mpa-garching.mpg.de>
!
module mod1
implicit none
interface foo
module procedure foo1, foo2
end interface
contains
subroutine foo1(bar, i)
real bar
integer i
i = 1
end subroutine
subroutine foo2(bar, i)
real bar(3)
integer i
i = 2
end subroutine
end module mod1
use mod1
implicit none
real bar(3)
integer i
i = 0
call foo (1e0, i)
if (i .ne. 1) STOP 1
i = 0
call foo (bar(1), i)
if (i .ne. 1) STOP 2
i = 0
call foo (bar, i)
if (i .ne. 2) STOP 3
end