fix pr/45972
[official-gcc.git] / gcc / testsuite / gfortran.dg / interface_21.f90
blob566a9ef37075d7273595bd47f668d26a2e352403
1 ! { dg-do compile }
2 ! PR33162 INTRINSIC functions as ACTUAL argument
3 ! Test case adapted from PR by Jerry DeLisle <jvdelisle@gcc.gnu.org>
4 module m
5 implicit none
6 contains
7 subroutine sub(a)
8 interface
9 function a(x)
10 real :: a, x
11 intent(in) :: x
12 end function a
13 end interface
14 print *, a(4.0)
15 end subroutine sub
16 end module m
18 use m
19 implicit none
20 EXTERNAL foo ! implicit interface is undefined
21 call sub(foo) ! { dg-error "is not a function" }
22 end
24 ! { dg-final { cleanup-modules "m" } }