xref: /minix3/external/bsd/llvm/dist/clang/test/Analysis/malloc-overflow.cpp (revision 83ee113ee0d94f3844d44065af2311604e9a30ad)
1 // RUN: %clang_cc1 -analyze -analyzer-checker=alpha.security.MallocOverflow -verify %s
2 // expected-no-diagnostics
3 
4 class A {
5 public:
6   A& operator<<(const A &a);
7 };
8 
9 void f() {
10   A a = A(), b = A();
11   a << b;
12 }
13