Peter Klausler 3d1157000d
[flang] Restore error status for many indistinguishable specifics (#79927)
A recent patch to allow pFUnit to compile softened the diagnostic about
indistinguishable specific procedures to a portability warning. It turns
out that this was overkill -- for specific procedures containing no
optional or unlimited polymorphic dummy data arguments, a diagnosis of
"indistinguishable" can still be a hard error.

So adjust the analysis to be tri-state: two procedures are either
definitely distinguishable, definitely indistinguishable without
optionals or unlimited polymorphics, or indeterminate. Emit errors as
before for the definitely indistinguishable cases; continue to emit
portability warnings for the indeterminate cases.

When this patch is merged, all but one of the dozen or so tests that I
disabled in llvm-test-suite can be re-enabled.
2024-01-29 17:31:35 -08:00

38 lines
1.3 KiB
Fortran

! RUN: %python %S/test_errors.py %s %flang_fc1
! Check for distinguishability of defined I/O procedures defined within
! and outside their types.
module m1
type t1
integer n
contains
procedure :: readt1a, readt1b
!ERROR: Generic 'read(unformatted)' may not have specific procedures 'readt1a' and 'readt1b' as their interfaces are not distinguishable
generic :: read(unformatted) => readt1a, readt1b
end type
type t2
integer n
end type
type t3
integer n
end type
!ERROR: Generic 'read(unformatted)' may not have specific procedures 'readt2a' and 'readt2b' as their interfaces are not distinguishable
interface read(unformatted)
module procedure :: readt1a, readt2a, readt2b, readt3
end interface
contains
#define DEFINE_READU(name, type) \
subroutine name(dtv, unit, iostat, iomsg); \
class(type), intent(in out) :: dtv; \
integer, intent(in) :: unit; \
integer, intent(out) :: iostat; \
character(*), intent(in out) :: iomsg; \
read(unit, iostat=iostat, iomsg=iomsg) dtv%n; \
end subroutine name
!ERROR: Derived type 't1' has conflicting type-bound input/output procedure 'read(unformatted)'
DEFINE_READU(readt1a, t1)
DEFINE_READU(readt1b, t1)
DEFINE_READU(readt2a, t2)
DEFINE_READU(readt2b, t2)
DEFINE_READU(readt3, t3)
end module