Files
RedBear-OS/local/recipes/dev/libclc/source/clang/test/Sema/block-args.c
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

56 lines
1.6 KiB
C

// RUN: %clang_cc1 %s -fsyntax-only -verify -fblocks
void take(void*);
void test(void) {
take(^(int x){});
take(^(int x, int y){});
take(^(int x, int y){});
take(^(int x, // expected-note {{previous declaration is here}}
int x){}); // expected-error {{redefinition of parameter 'x'}}
take(^(int x) { return x+1; });
int (^CP)(int) = ^(int x) { return x*x; };
take(CP);
int arg;
^{return 1;}();
^{return 2;}(arg); // expected-error {{too many arguments to block call}}
^(void){return 3;}(1); // expected-error {{too many arguments to block call}}
^(){return 4;}(arg); // expected-error {{too many arguments to block call}}
^(int x, ...){return 5;}(arg, arg); // Explicit varargs, ok.
}
int main(int argc, char** argv) {
^(int argCount) {
argCount = 3;
}(argc);
}
void f0(void) {
^(int, double d, char) {}(1, 1.34, 'a'); // expected-warning {{omitting the parameter name in a function definition is a C23 extension}} \
// expected-warning {{omitting the parameter name in a function definition is a C23 extension}}
}
void test4(void) {
int (^f)(void) = ^((x)) { }; // expected-error {{type specifier missing}} expected-error {{type-id cannot have a name}}
}
void test5_helper(void (^)(int, int[*]));
void test5(void) {
test5_helper(^(int n, int array[n]) {});
}
// Reduced from a problem on platforms where va_list is an array.
struct tag {
int x;
};
typedef struct tag array_ty[1];
void test6(void) {
void (^block)(array_ty) = ^(array_ty arr) { };
array_ty arr;
block(arr);
}