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

51 lines
1.1 KiB
Fortran

!RUN: %flang_fc1 -fdebug-unparse %s 2>&1 | FileCheck %s
!Test inheritance of implicit rules in submodules and separate module
!procedures.
module m
implicit integer(1)(a-z)
interface
module subroutine mp(da) ! integer(2)
implicit integer(2)(a-z)
end
end interface
save :: mv ! integer(1)
end
submodule(m) sm1
implicit integer(8)(a-z)
save :: sm1v ! integer(8)
interface
module subroutine sm1p(da) ! default real
end
end interface
end
submodule(m:sm1) sm2
implicit integer(2)(a-c,e-z)
save :: sm2v ! integer(2)
contains
module subroutine sm1p(da) ! default real
save :: sm1pv ! inherited integer(2)
!CHECK: PRINT *, 1_4, 8_4, 2_4, 4_4, 2_4
print *, kind(mv), kind(sm1v), kind(sm2v), kind(da), kind(sm1pv)
end
end
submodule(m:sm2) sm3
implicit integer(8)(a-z)
save :: sm3v ! integer(8)
contains
module procedure mp
save :: mpv ! inherited integer(8)
call sm1p(1.)
!CHECK: PRINT *, 1_4, 8_4, 2_4, 8_4, 2_4, 8_4
print *, kind(mv), kind(sm1v), kind(sm2v), kind(sm3v), kind(da), kind(mpv)
end
end
program main
use m
call mp(1_2)
end