nvptx, libgfortran: Switch out of "minimal" mode
[official-gcc.git] / gcc / testsuite / gfortran.dg / interface_21.f90
blobe3db771a93d4ae6913bee77a3ac4a04ad0463621
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