Files
clang-p2996/flang/test/Semantics/resolve108.f90
Peter Klausler 6111ddedc8 [flang] Defer all function result type processing
When a type specification appears in the prefix of a FUNCTION statement,
defer its processing as late as possible so that any symbols in the
tpe specification can be resolved in the function's scope to local
declarations, including use-associated symbols.  f18 was already doing
this deferral in a limited form for derived types, and this patch
makes it work for intrinsic type parameter values as well.

In short, "real(kind(x)) function foo(x)" now works as it should.

"As late as possible" means the end of the specification part, or
the first appearance of the function result name in the specification
part.

Differential Revision: https://reviews.llvm.org/D123705
2022-04-14 10:25:57 -07:00

72 lines
1.6 KiB
Fortran

! RUN: %python %S/test_errors.py %s %flang_fc1
! Tests attempts at forward references to local names in a FUNCTION prefix
! This case is not an error, but will elicit bogus errors if the
! result type of the function is badly resolved.
module m1
type t1
sequence
integer not_m
end type
contains
type(t1) function foo(n)
integer, intent(in) :: n
type t1
sequence
integer m
end type
foo%m = n
end function
end module
subroutine s1
use :: m1, only: foo
type t1
sequence
integer m
end type
type(t1) x
x = foo(234)
print *, x
end subroutine
module m2
integer, parameter :: k = kind(1.e0)
contains
real(kind=k) function foo(n)
integer, parameter :: k = kind(1.d0)
integer, intent(in) :: n
foo = n
end function
end module
subroutine s2
use :: m2, only: foo
!If we got the type of foo right, this declaration will fail
!due to an attempted division by zero.
!ERROR: Must be a constant value
integer, parameter :: test = 1 / (kind(foo(1)) - kind(1.d0))
end subroutine
module m3
real(kind=kind(1.0e0)) :: x
contains
real(kind=kind(x)) function foo(x)
real(kind=kind(1.0d0)) x
!ERROR: Must be a constant value
integer, parameter :: test = 1 / (kind(foo) - kind(1.d0))
foo = n
end function
end module
module m4
contains
real(n) function foo(x)
!ERROR: 'foo' is not an object that can appear in an expression
integer, parameter :: n = kind(foo)
real(n), intent(in) :: x
!ERROR: 'x' is not an object that can appear in an expression
foo = x
end function
end module