blob: 6543b6c2db967aeee3c7cf4a303d206fe9bb7ce9 [file] [edit]
! Test the new RANK clause. This uses the examples from the F2023 Standard and
! related explanation documents.
!
! RUN: %python %S/test_errors.py %s %flang_fc1
program rank_clause01
implicit none
logical :: X0(10,10,10)
integer :: array1(10,10)
interface
subroutine sub02(arg1)
integer, rank(2) :: arg1
end subroutine
end interface
call sub01(X0)
call sub02(array1)
call sub_errors()
contains
subroutine sub01(X3)
integer :: X0(10,10,10)
logical, rank(rank(X0)), allocatable :: X1 ! Rank 3, deferred shape
complex, rank(2), pointer :: X2 ! Rank 2, deferred-shape
logical, rank(rank(X0)) :: X3 ! Rank 3, assumed-shape
real, rank(0) :: X4 ! Scalar
allocatable :: X4
if (rank(X1) == 3 .and. rank(X2) == 2 .and. rank(X3) == 3 .and. &
rank(X4) == 0) then
print *, "PASS"
else
print *, "FAIL"
endif
end subroutine
subroutine sub_errors()
integer :: not_constant
! Rank below range
!ERROR: RANK value (-1) must be between 0 and 15
integer, rank(-1) :: err_rank01
! Rank above range
!ERROR: RANK value (16) must be between 0 and 15
integer, rank(16) :: err_rank02
! Non-Constant
!ERROR: RANK value must be a constant expression
!ERROR: Must be a constant value
integer, rank(not_constant) :: err_rank03
end subroutine
end program
subroutine sub02(A)
integer, rank(2) :: A
integer, allocatable, rank(2) :: B
if (rank(A) == rank(B)) then
print *, "PASS"
else
print *, "FAIL"
endif
end subroutine