cb424d7448
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).
125 lines
4.1 KiB
C++
125 lines
4.1 KiB
C++
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++98 %s
|
|
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
|
|
|
|
struct A { int x; };
|
|
// expected-note@-1 {{candidate constructor (the implicit copy constructor) not viable: no known conversion from 'int' to 'const A' for 1st argument}}
|
|
#if __cplusplus >= 201103L
|
|
// expected-note@-3 {{candidate constructor (the implicit move constructor) not viable: no known conversion from 'int' to 'A' for 1st argument}}
|
|
#endif
|
|
// expected-note@-5 {{candidate constructor (the implicit default constructor) not viable: requires 0 arguments, but 1 was provided}}
|
|
|
|
class Base {
|
|
public:
|
|
virtual void f();
|
|
};
|
|
|
|
class Derived : public Base { };
|
|
|
|
struct ConvertibleToInt {
|
|
operator int() const;
|
|
};
|
|
|
|
struct Constructible {
|
|
Constructible(int, float);
|
|
};
|
|
|
|
// ---------------------------------------------------------------------
|
|
// C-style casts
|
|
// ---------------------------------------------------------------------
|
|
template<typename T, typename U>
|
|
struct CStyleCast0 {
|
|
void f(T t) {
|
|
(void)((U)t); // expected-error{{cannot convert 'A' to 'int' without a conversion operator}}
|
|
}
|
|
};
|
|
|
|
template struct CStyleCast0<int, float>;
|
|
template struct CStyleCast0<A, int>; // expected-note{{instantiation}}
|
|
|
|
// ---------------------------------------------------------------------
|
|
// static_cast
|
|
// ---------------------------------------------------------------------
|
|
template<typename T, typename U>
|
|
struct StaticCast0 {
|
|
void f(T t) {
|
|
(void)static_cast<U>(t); // expected-error{{no matching conversion for static_cast from 'int' to 'A'}}
|
|
}
|
|
};
|
|
|
|
template struct StaticCast0<ConvertibleToInt, bool>;
|
|
template struct StaticCast0<int, float>;
|
|
template struct StaticCast0<int, A>; // expected-note{{instantiation}}
|
|
|
|
// ---------------------------------------------------------------------
|
|
// dynamic_cast
|
|
// ---------------------------------------------------------------------
|
|
template<typename T, typename U>
|
|
struct DynamicCast0 {
|
|
void f(T t) {
|
|
(void)dynamic_cast<U>(t); // expected-error{{invalid target type 'A' for dynamic_cast; target type must be a reference or pointer type to a defined class}}
|
|
}
|
|
};
|
|
|
|
template struct DynamicCast0<Base*, Derived*>;
|
|
template struct DynamicCast0<Base*, A>; // expected-note{{instantiation}}
|
|
|
|
// ---------------------------------------------------------------------
|
|
// reinterpret_cast
|
|
// ---------------------------------------------------------------------
|
|
template<typename T, typename U>
|
|
struct ReinterpretCast0 {
|
|
void f(T t) {
|
|
(void)reinterpret_cast<U>(t); // expected-error{{qualifiers}}
|
|
}
|
|
};
|
|
|
|
template struct ReinterpretCast0<void (*)(int), void (*)(float)>;
|
|
template struct ReinterpretCast0<int const *, float *>; // expected-note{{instantiation}}
|
|
|
|
// ---------------------------------------------------------------------
|
|
// const_cast
|
|
// ---------------------------------------------------------------------
|
|
template<typename T, typename U>
|
|
struct ConstCast0 {
|
|
void f(T t) {
|
|
(void)const_cast<U>(t); // expected-error{{not allowed}}
|
|
}
|
|
};
|
|
|
|
template struct ConstCast0<int const * *, int * *>;
|
|
template struct ConstCast0<int const *, float *>; // expected-note{{instantiation}}
|
|
|
|
// ---------------------------------------------------------------------
|
|
// C++ functional cast
|
|
// ---------------------------------------------------------------------
|
|
template<typename T, typename U>
|
|
struct FunctionalCast1 {
|
|
void f(T t) {
|
|
(void)U(t); // expected-error{{cannot convert 'A' to 'int' without a conversion operator}}
|
|
}
|
|
};
|
|
|
|
template struct FunctionalCast1<int, float>;
|
|
template struct FunctionalCast1<A, int>; // expected-note{{instantiation}}
|
|
|
|
// Generates temporaries, which we cannot handle yet.
|
|
template<int N, long M>
|
|
struct FunctionalCast2 {
|
|
void f() {
|
|
(void)Constructible(N, M);
|
|
}
|
|
};
|
|
|
|
template struct FunctionalCast2<1, 3>;
|
|
|
|
// ---------------------------------------------------------------------
|
|
// implicit casting
|
|
// ---------------------------------------------------------------------
|
|
template<typename T>
|
|
struct Derived2 : public Base { };
|
|
|
|
void test_derived_to_base(Base *&bp, Derived2<int> *dp) {
|
|
bp = dp;
|
|
}
|