Files
RedBear-OS/local/recipes/dev/libclc/source/flang/test/Semantics/resolve80.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

62 lines
2.3 KiB
Fortran

! RUN: %python %S/test_errors.py %s %flang_fc1
module m
!C778 The same binding-attr shall not appear more than once in a given
!binding-attr-list.
!
!R749 type-bound-procedure-stmt
! PROCEDURE [ [ ,binding-attr-list] :: ]type-bound-proc-decl-list
! or PROCEDURE (interface-name),binding-attr-list::binding-name-list
!
!
! binding-attr values are:
! PUBLIC, PRIVATE, DEFERRED, NON_OVERRIDABLE, NOPASS, PASS [ (arg-name) ]
!
type, abstract :: boundProcType
contains
!WARNING: Attribute 'PUBLIC' cannot be used more than once [-Wredundant-attribute]
procedure(subPublic), public, deferred, public :: publicBinding
!WARNING: Attribute 'PRIVATE' cannot be used more than once [-Wredundant-attribute]
procedure(subPrivate), private, deferred, private :: privateBinding
!WARNING: Attribute 'DEFERRED' cannot be used more than once [-Wredundant-attribute]
procedure(subDeferred), deferred, public, deferred :: deferredBinding
!WARNING: Attribute 'NON_OVERRIDABLE' cannot be used more than once [-Wredundant-attribute]
procedure, non_overridable, public, non_overridable :: subNon_overridable;
!WARNING: Attribute 'NOPASS' cannot be used more than once [-Wredundant-attribute]
procedure(subNopass), nopass, deferred, nopass :: nopassBinding
!WARNING: Attribute 'PASS' cannot be used more than once [-Wredundant-attribute]
procedure(subPass), pass, deferred, pass :: passBinding
!ERROR: Attributes 'PASS' and 'NOPASS' conflict with each other
procedure(subPassNopass), pass, deferred, nopass :: passNopassBinding ! C781
end type boundProcType
contains
subroutine subPublic(x)
class(boundProcType), intent(in) :: x
end subroutine subPublic
subroutine subPrivate(x)
class(boundProcType), intent(in) :: x
end subroutine subPrivate
subroutine subDeferred(x)
class(boundProcType), intent(in) :: x
end subroutine subDeferred
subroutine subNon_overridable(x)
class(boundProcType), intent(in) :: x
end subroutine subNon_overridable
subroutine subNopass(x)
class(boundProcType), intent(in) :: x
end subroutine subNopass
subroutine subPass(x)
class(boundProcType), intent(in) :: x
end subroutine subPass
subroutine subPassNopass(x)
class(boundProcType), intent(in) :: x
end subroutine subPassNopass
end module m