Mercurial > hg > CbC > CbC_llvm
view clang/test/Analysis/cstring-syntax-cxx.cpp @ 236:c4bab56944e8 llvm-original
LLVM 16
author | kono |
---|---|
date | Wed, 09 Nov 2022 17:45:10 +0900 |
parents | 1d019706d866 |
children |
line wrap: on
line source
// 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. 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; } // Ensure we don't crash on custom-defined strncat. char strncat (); int main () { return strncat (); }