Files
RedBear-OS/local/recipes/dev/libclc/source/flang/test/Semantics/resolve81.f90
T
vasilito cb424d7448 build: static patch-sanity linter (shift-left the malformed-patch class)
verify-patch-sanity.py validates every active recipe .patch has internally-
consistent hunk line counts — catching the 'malformed patch at line N' failure
at commit/CI/preflight time instead of hours into a cook. This cycle hit that
class three times (qtwaylandscanner, sddm, xwayland), each only discovered when
cookbook tried to apply the patch.

Running it across the repo found 29 latent malformed patches (validated against
GNU patch: e.g. relibc/P3-sysv-ipc reproduces 'malformed patch at line 22').
They were harmless only because they sit in vendored recipes (baked, not re-
applied) — but would fail on any version-bump re-derivation. --fix recounts the
hunk headers (body untouched) and repaired all 29.

Wired into build-preflight.sh (Phase 1.0D) and redbear-ci.yml, with a unit test
(test-patch-sanity.sh). Skips archived/legacy trees and unvalidatable formats
(empty placeholders, bare-@@ git hunks).
2026-08-01 05:13:02 +03:00

67 lines
3.7 KiB
Fortran

! RUN: %python %S/test_errors.py %s %flang_fc1
! C801 The same attr-spec shall not appear more than once in a given
! type-declaration-stmt.
!
! R801 type-declaration-stmt ->
! declaration-type-spec [[, attr-spec]... ::] entity-decl-list
! attr-spec values are:
! PUBLIC, PRIVATE, ALLOCATABLE, ASYNCHRONOUS, CODIMENSION, CONTIGUOUS,
! DIMENSION (array-spec), EXTERNAL, INTENT (intent-spec), INTRINSIC,
! BIND(C), OPTIONAL, PARAMETER, POINTER, PROTECTED, SAVE, TARGET, VALUE,
! VOLATILE
module m
!WARNING: Attribute 'PUBLIC' cannot be used more than once [-Wredundant-attribute]
real, public, allocatable, public :: publicVar
!WARNING: Attribute 'PRIVATE' cannot be used more than once [-Wredundant-attribute]
real, private, allocatable, private :: privateVar
!WARNING: Attribute 'ALLOCATABLE' cannot be used more than once [-Wredundant-attribute]
real, allocatable, allocatable :: allocVar
!WARNING: Attribute 'ASYNCHRONOUS' cannot be used more than once [-Wredundant-attribute]
real, asynchronous, public, asynchronous :: asynchVar
!ERROR: Attribute 'CODIMENSION' cannot be used more than once
real, codimension[*], codimension[*] :: codimensionVar
!WARNING: Attribute 'CONTIGUOUS' cannot be used more than once [-Wredundant-attribute]
real, contiguous, pointer, contiguous :: contigVar(:)
!ERROR: Attribute 'DIMENSION' cannot be used more than once
real, dimension(5), dimension(5) :: arrayVar
!WARNING: Attribute 'EXTERNAL' cannot be used more than once [-Wredundant-attribute]
real, external, external :: externFunc
!WARNING: Attribute 'INTRINSIC' cannot be used more than once [-Wredundant-attribute]
!ERROR: 'cos' may not have both the BIND(C) and INTRINSIC attributes
!ERROR: An interface name with the BIND attribute must appear if the BIND attribute appears in a procedure declaration
real, intrinsic, bind(c), intrinsic :: cos
!WARNING: Attribute 'BIND(C)' cannot be used more than once [-Wredundant-attribute]
integer, bind(c), volatile, bind(c) :: bindVar
!WARNING: Attribute 'PARAMETER' cannot be used more than once [-Wredundant-attribute]
real, parameter, parameter :: realConst = 4.3
!WARNING: Attribute 'POINTER' cannot be used more than once [-Wredundant-attribute]
real, pointer, pointer :: realPtr
!WARNING: Attribute 'PROTECTED' cannot be used more than once [-Wredundant-attribute]
real, protected, protected :: realProt
!WARNING: Attribute 'SAVE' cannot be used more than once [-Wredundant-attribute]
real, save, save :: saveVar
!WARNING: Attribute 'TARGET' cannot be used more than once [-Wredundant-attribute]
real, target, target :: targetVar
!WARNING: Attribute 'VOLATILE' cannot be used more than once [-Wredundant-attribute]
real, volatile, volatile :: volatileVar
contains
subroutine testTypeDecl(arg1, arg2, arg3, arg4, arg5, arg6)
!WARNING: Attribute 'INTENT(IN)' cannot be used more than once [-Wredundant-attribute]
real, intent(in), intent(in) :: arg1
!WARNING: Attribute 'INTENT(OUT)' cannot be used more than once [-Wredundant-attribute]
real, intent(out), intent(out) :: arg2
!WARNING: Attribute 'INTENT(INOUT)' cannot be used more than once [-Wredundant-attribute]
real, intent(inout), intent(inout) :: arg3
!WARNING: Attribute 'OPTIONAL' cannot be used more than once [-Wredundant-attribute]
integer, optional, intent(in), optional :: arg4
!WARNING: Attribute 'VALUE' cannot be used more than once [-Wredundant-attribute]
integer, value, intent(in), value :: arg5
!ERROR: Attributes 'INTENT(IN)' and 'INTENT(INOUT)' conflict with each other
integer, intent(in), pointer, intent(inout) :: arg6
arg2 =3.5
end subroutine testTypeDecl
end module m