blob: 7ecf32941ca737eca0c58988bc3438fac2f9d7bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
! { dg-do compile }
!
! PR fortran/31559
! Do not allow assigning to external functions
!
! Contributed by Steve Kargl <sgk@troutmask.apl.washington.edu>
!
module mod
implicit none
contains
integer function bar()
bar = 4
end function bar
subroutine a()
implicit none
real :: fun
external fun
interface
function funget(a)
integer :: a
end function
subroutine sub()
end subroutine sub
end interface
sub = 'a' ! { dg-error "is not a variable" }
fun = 4.4 ! { dg-error "is not a variable" }
funget = 4 ! { dg-error "is not a variable" }
bar = 5 ! { dg-error "is not a variable" }
end subroutine a
end module mod
end
|