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

95 lines
3.8 KiB
Fortran

! RUN: %python %S/test_errors.py %s %flang_fc1
! Check errors from illegal (10.1.12 para 2) forward references
! in specification expressions to entities declared later in the
! same specification part.
module m1
integer :: m1j1, m1j2, m1j3, m1j4
contains
subroutine s1
!ERROR: Forward reference to 'm1j1' is not allowed in the same specification part
integer(kind=kind(m1j1)) :: t_s1m1j1
integer(kind=kind(m1s1j1)) :: t_s1j1 ! implicitly typed in s1
integer :: m1j1, m1s1j1, m1s1j2, m1s1j4
block
!ERROR: Forward reference to 'm1j2' is not allowed in the same specification part
integer(kind=kind(m1j2)) :: t_s1bm1j2
!ERROR: Forward reference to 'm1s1j2' is not allowed in the same specification part
integer(kind=kind(m1s1j2)) :: t_s1bm1s1j2
!ERROR: Forward reference to 'm1s1j3' is not allowed in the same specification part
integer(kind=kind(m1s1j3)) :: t_m1s1j3 ! m1s1j3 implicitly typed in s1
integer :: m1j2, m1s1j2, m1s1j3
end block
contains
subroutine s2
!ERROR: Forward reference to 'm1j3' is not allowed in the same specification part
integer(kind=kind(m1j3)) :: t_m1j3
!ERROR: Forward reference to 'm1s1j3' is not allowed in the same specification part
integer(kind=kind(m1s1j3)) :: t_m1s1j3
integer :: m1j3, m1s1j3, m1s2j1
block
!ERROR: Forward reference to 'm1j4' is not allowed in the same specification part
integer(kind=kind(m1j4)) :: t_m1j4
!ERROR: Forward reference to 'm1s1j4' is not allowed in the same specification part
integer(kind=kind(m1s1j4)) :: t_m1s1j4
!ERROR: Forward reference to 'm1s2j1' is not allowed in the same specification part
integer(kind=kind(m1s2j1)) :: t_m1s2j1
!ERROR: Forward reference to 'm1s2j2' is not allowed in the same specification part
integer(kind=kind(m1s2j2)) :: t_m1s2j2 ! m1s2j2 implicitly typed in s2
integer :: m1j4, m1s1j4, m1s2j1, m1s2j2
end block
end subroutine
end subroutine
end module
module m2
implicit none
integer :: m2j1, m2j2, m2j3, m2j4
contains
subroutine s1
!ERROR: Forward reference to 'm2j1' is not allowed in the same specification part
integer(kind=kind(m2j1)) :: t_s1m2j1
!ERROR: No explicit type declared for 'm2s1j1'
integer(kind=kind(m2s1j1)) :: t_s1j1
integer :: m2j1, m2s1j1, m2s1j2, m2s1j4
block
!ERROR: Forward reference to 'm2j2' is not allowed in the same specification part
integer(kind=kind(m2j2)) :: t_s1bm2j2
!ERROR: Forward reference to 'm2s1j2' is not allowed in the same specification part
integer(kind=kind(m2s1j2)) :: t_s1bm2s1j2
!ERROR: No explicit type declared for 'm2s1j3'
integer(kind=kind(m2s1j3)) :: t_m2s1j3
integer :: m2j2, m2s1j2, m2s1j3
end block
contains
subroutine s2
!ERROR: Forward reference to 'm2j3' is not allowed in the same specification part
integer(kind=kind(m2j3)) :: t_m2j3
!ERROR: No explicit type declared for 'm2s1j3'
integer(kind=kind(m2s1j3)) :: t_m2s1j3
integer :: m2j3, m2s1j3, m2s2j1
block
!ERROR: Forward reference to 'm2j4' is not allowed in the same specification part
integer(kind=kind(m2j4)) :: t_m2j4
!ERROR: Forward reference to 'm2s1j4' is not allowed in the same specification part
integer(kind=kind(m2s1j4)) :: t_m2s1j4
!ERROR: Forward reference to 'm2s2j1' is not allowed in the same specification part
integer(kind=kind(m2s2j1)) :: t_m2s2j1
!ERROR: No explicit type declared for 'm2s2j2'
integer(kind=kind(m2s2j2)) :: t_m2s2j2
integer :: m2j4, m2s1j4, m2s2j1, m2s2j2
end block
end subroutine
end subroutine
end module
! Case that elicited bad errors
SUBROUTINE KEEL
INTEGER NODES
CONTAINS
SUBROUTINE SGEOM
REAL :: RADIUS(nodes)
END SUBROUTINE
END SUBROUTINE KEEL