// RUN: %clang_analyze_cc1 -analyzer-checker=unix.cstring.BadSizeArg -verify %s
// expected-no-diagnostics
// Ensure we don't crash on C++ declarations with special names.
structX{X(inti):i(i){}int i;};
X operator+(X a, X b){returnX(a.i+ b.i);}voidtest(X a, X b){
X c = a + b;}// Ensure we don't crash on custom-defined strncat.
charstrncat ();intmain (){returnstrncat();}