summaryrefslogtreecommitdiffstats
path: root/test/Analysis/malloc-overflow.cpp
blob: e070217cf7d8e2ef71148fbe43e02d47ab2cdc29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %clang_analyze_cc1 -analyzer-checker=alpha.security.MallocOverflow -verify %s
// expected-no-diagnostics

class A {
public:
  A& operator<<(const A &a);
};

void f() {
  A a = A(), b = A();
  a << b;
}