Files
clang-p2996/flang/test/Semantics/resolve85.f90
Peter Klausler 1c91d9bdea [flang] Ensure that portability warnings are conditional (#71857)
Before emitting a warning message, code should check that the usage in
question should be diagnosed by calling ShouldWarn(). A fair number of
sites in the code do not, and can emit portability warnings
unconditionally, which can confuse a user that hasn't asked for them
(-pedantic) and isn't terribly concerned about portability *to* other
compilers.

Add calls to ShouldWarn() or IsEnabled() around messages that need them,
and add -pedantic to tests that now require it to test their portability
messages, and add more expected message lines to those tests when
-pedantic causes other diagnostics to fire.
2023-11-13 16:13:50 -08:00

39 lines
1.3 KiB
Fortran

! RUN: %python %S/test_errors.py %s %flang_fc1 -pedantic
module m
! C730 The same type-attr-spec shall not appear more than once in a given
! derived-type-stmt.
!
! R727 derived-type-stmt ->
! TYPE [[, type-attr-spec-list] ::] type-name [( type-param-name-list )]
! type-attr-spec values are:
! ABSTRACT, PUBLIC, PRIVATE, BIND(C), EXTENDS(parent-type-name)
!WARNING: Attribute 'ABSTRACT' cannot be used more than once
type, abstract, public, abstract :: derived1
end type derived1
!WARNING: Attribute 'PUBLIC' cannot be used more than once
type, public, abstract, public :: derived2
end type derived2
!WARNING: Attribute 'PRIVATE' cannot be used more than once
type, private, abstract, private :: derived3
end type derived3
!ERROR: Attributes 'PUBLIC' and 'PRIVATE' conflict with each other
type, public, abstract, private :: derived4
end type derived4
!WARNING: Attribute 'BIND(C)' cannot be used more than once
!WARNING: A derived type with the BIND attribute is empty
type, bind(c), public, bind(c) :: derived5
end type derived5
type, public :: derived6
end type derived6
!ERROR: Attribute 'EXTENDS' cannot be used more than once
type, extends(derived6), public, extends(derived6) :: derived7
end type derived7
end module m