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).
76 lines
1.8 KiB
C++
76 lines
1.8 KiB
C++
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
|
|
struct Y {
|
|
int x;
|
|
};
|
|
|
|
template<typename T>
|
|
struct X1 {
|
|
int f(T* ptr, int T::*pm) {
|
|
// expected-error@-1 {{type 'int' cannot be used prior to '::' because it has no members}}
|
|
return ptr->*pm;
|
|
}
|
|
};
|
|
|
|
template struct X1<Y>;
|
|
template struct X1<int>; // expected-note{{instantiation}}
|
|
|
|
template<typename T, typename Class>
|
|
struct X2 {
|
|
T f(Class &obj, T Class::*pm) { // expected-error{{to a reference}} \
|
|
// expected-error{{member pointer to void}}
|
|
return obj.*pm;
|
|
}
|
|
};
|
|
|
|
template struct X2<int, Y>;
|
|
template struct X2<int&, Y>; // expected-note{{instantiation}}
|
|
template struct X2<const void, Y>; // expected-note{{instantiation}}
|
|
|
|
template<typename T, typename Class, T Class::*Ptr>
|
|
struct X3 {
|
|
X3<T, Class, Ptr> &operator=(const T& value) {
|
|
return *this;
|
|
}
|
|
};
|
|
|
|
X3<int, Y, &Y::x> x3;
|
|
|
|
typedef int Y::*IntMember;
|
|
|
|
template<IntMember Member>
|
|
struct X4 {
|
|
X3<int, Y, Member> member;
|
|
|
|
int &getMember(Y& y) { return y.*Member; }
|
|
};
|
|
|
|
int &get_X4(X4<&Y::x> x4, Y& y) {
|
|
return x4.getMember(y);
|
|
}
|
|
|
|
template<IntMember Member>
|
|
void accept_X4(X4<Member>);
|
|
|
|
void test_accept_X4(X4<&Y::x> x4) {
|
|
accept_X4(x4);
|
|
}
|
|
|
|
namespace ValueDepMemberPointer {
|
|
template <void (*)()> struct instantiate_function {};
|
|
template <typename T> struct S {
|
|
static void instantiate();
|
|
typedef instantiate_function<&S::instantiate> x; // expected-note{{instantiation}}
|
|
};
|
|
template <typename T> void S<T>::instantiate() {
|
|
int a[(int)sizeof(T)-42]; // expected-error{{array with a negative size}}
|
|
}
|
|
S<int> s;
|
|
}
|
|
|
|
namespace PR18192 {
|
|
struct A { struct { int n; }; };
|
|
template<int A::*> struct X {};
|
|
constexpr int A::*p = &A::n;
|
|
X<p> x; // expected-error{{not a pointer to member constant}}
|
|
}
|