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

75 lines
2.2 KiB
Fortran

! RUN: %python %S/test_errors.py %s %flang_fc1
! C703 (R702) The derived-type-spec shall not specify an abstract type (7.5.7).
! This constraint refers to the derived-type-spec in a type-spec. A type-spec
! can appear in an ALLOCATE statement, an ac-spec for an array constructor, and
! in the type specifier of a TYPE GUARD statement
!
! C706 TYPE(derived-type-spec) shall not specify an abstract type (7.5.7).
! This is for a declaration-type-spec
!
! C796 (R756) The derived-type-spec shall not specify an abstract type (7.5.7).
!
! C705 (R703) In a declaration-type-spec that uses the CLASS keyword,
! derived-type-spec shall specify an extensible type (7.5.7).
subroutine s()
type, abstract :: abstractType
end type abstractType
type, extends(abstractType) :: concreteType
end type concreteType
! declaration-type-spec
!ERROR: ABSTRACT derived type may not be used here
type (abstractType), allocatable :: abstractVar
! ac-spec for an array constructor
!ERROR: ABSTRACT derived type may not be used here
type (abstractType), parameter :: abstractArray(*) = (/ abstractType :: /)
class(*), allocatable :: selector
! Structure constructor
!ERROR: ABSTRACT derived type may not be used here
!ERROR: ABSTRACT derived type 'abstracttype' may not be used in a structure constructor
type (abstractType) :: abstractVar1 = abstractType()
! Allocate statement
!ERROR: ABSTRACT derived type may not be used here
allocate(abstractType :: abstractVar)
select type(selector)
! Type specifier for a type guard statement
!ERROR: ABSTRACT derived type may not be used here
type is (abstractType)
end select
end subroutine s
subroutine s1()
type :: extensible
end type
type, bind(c) :: inextensible
end type
! This one's OK
class(extensible), allocatable :: y
!ERROR: Non-extensible derived type 'inextensible' may not be used with CLASS keyword
class(inextensible), allocatable :: x
end subroutine s1
subroutine s2()
type t
integer i
end type t
type, extends(t) :: t2
real x
end type t2
contains
function f1(dummy)
class(*) dummy
type(t) f1(1)
!ERROR: Cannot have an unlimited polymorphic value in an array constructor
f1 = [ (dummy) ]
end function f1
end subroutine s2