Check most of the requiremens of constraint C1577 for statement functions. The restrictions that prevent recursion are hard errors; the others seem to be benign legacies and are caught as portability warnings. Differential Revision: https://reviews.llvm.org/D139136
45 lines
1.5 KiB
Fortran
45 lines
1.5 KiB
Fortran
! RUN: %python %S/test_errors.py %s %flang_fc1
|
|
! C1577
|
|
program main
|
|
type t1(k,l)
|
|
integer, kind :: k = kind(1)
|
|
integer, len :: l = 666
|
|
integer(k) n
|
|
end type t1
|
|
interface
|
|
pure integer function ifunc()
|
|
end function
|
|
end interface
|
|
type(t1(k=4,l=ifunc())) x1
|
|
!PORTABILITY: Statement function 'sf1' should not contain an array constructor
|
|
sf1(n) = sum([(j,j=1,n)])
|
|
type(t1) sf2
|
|
!PORTABILITY: Statement function 'sf2' should not contain a structure constructor
|
|
sf2(n) = t1(n)
|
|
!PORTABILITY: Statement function 'sf3' should not contain a type parameter inquiry
|
|
sf3(n) = x1%l
|
|
!ERROR: Recursive call to statement function 'sf4' is not allowed
|
|
sf4(n) = sf4(n)
|
|
!ERROR: Statement function 'sf5' may not reference another statement function 'sf6' that is defined later
|
|
sf5(n) = sf6(n)
|
|
real sf7
|
|
!ERROR: Statement function 'sf6' may not reference another statement function 'sf7' that is defined later
|
|
sf6(n) = sf7(n)
|
|
!PORTABILITY: Statement function 'sf7' should not reference function 'explicit' that requires an explicit interface
|
|
sf7(n) = explicit(n)
|
|
real :: a(3) = [1., 2., 3.]
|
|
!PORTABILITY: Statement function 'sf8' should not pass an array argument that is not a whole array
|
|
sf8(n) = sum(a(1:2))
|
|
sf8a(n) = sum(a) ! ok
|
|
contains
|
|
real function explicit(x,y)
|
|
integer, intent(in) :: x
|
|
integer, intent(in), optional :: y
|
|
explicit = x
|
|
end function
|
|
pure function arr()
|
|
real :: arr(2)
|
|
arr = [1., 2.]
|
|
end function
|
|
end
|