Peter Klausler b8513e4393
[flang] Better handling of weird pointer assignment case (#120628)
F'2023 C1017 permits the assignment of an unlimited polymorphic data
target to a monomorphic LHS pointer when the LHS pointer has a sequence
derived type (BIND(C) or SEQUENCE attribute). We allowed for this in
pointer assignments that don't have a function reference as their RHS.
Extend this support to function references, and also ensure that rank
compatibility is still checked.
2025-01-08 13:12:00 -08:00

47 lines
1.4 KiB
Fortran

! RUN: %python %S/test_errors.py %s %flang_fc1
! The RHS of a pointer assignment can be unlimited polymorphic
! if the LHS is a sequence type.
program main
type nonSeqType
integer j
end type
type seqType
sequence
integer j
end type
type(nonSeqType), target :: xNonSeq = nonSeqType(1)
type(nonSeqType), pointer :: pNonSeq
type(seqType), target :: xSeq = seqType(1), aSeq(1)
type(seqType), pointer :: pSeq, paSeq(:)
!ERROR: function result type 'CLASS(*)' is not compatible with pointer type 'nonseqtype'
pNonSeq => polyPtr(xNonSeq)
pSeq => polyPtr(xSeq) ! ok
!ERROR: Pointer has rank 1 but target has rank 0
paSeq => polyPtr(xSeq)
!ERROR: Pointer has rank 0 but target has rank 1
pSeq => polyPtrArr(aSeq)
contains
function polyPtr(target)
class(*), intent(in), target :: target
class(*), pointer :: polyPtr
polyPtr => target
end
function polyPtrArr(target)
class(*), intent(in), target :: target(:)
class(*), pointer :: polyPtrArr(:)
polyPtrArr => target
end
function err1(target)
class(*), intent(in), target :: target(:)
class(*), pointer :: err1
!ERROR: Pointer has rank 0 but target has rank 1
err1 => target
end
function err2(target)
class(*), intent(in), target :: target
class(*), pointer :: err2(:)
!ERROR: Pointer has rank 1 but target has rank 0
err2 => target
end
end