2012-02-21 05:10:37 +08:00
|
|
|
// RUN: %clang_cc1 -analyze -analyzer-checker=unix.cstring.BadSizeArg -analyzer-store=region -verify %s
|
2012-10-19 20:44:48 +08:00
|
|
|
// expected-no-diagnostics
|
2012-02-02 03:16:20 +08:00
|
|
|
|
|
|
|
// Ensure we don't crash on C++ declarations with special names.
|
|
|
|
struct X {
|
|
|
|
X(int i): i(i) {}
|
|
|
|
int i;
|
|
|
|
};
|
|
|
|
|
|
|
|
X operator+(X a, X b) {
|
|
|
|
return X(a.i + b.i);
|
|
|
|
}
|
|
|
|
|
|
|
|
void test(X a, X b) {
|
|
|
|
X c = a + b;
|
|
|
|
}
|
|
|
|
|
2013-04-11 06:06:29 +08:00
|
|
|
// Ensure we don't crash on custom-defined strncat.
|
|
|
|
char strncat ();
|
|
|
|
int main () {
|
|
|
|
return strncat ();
|
|
|
|
}
|