[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Analysis / malloc-overflow.cpp
blobe070217cf7d8e2ef71148fbe43e02d47ab2cdc29
1 // RUN: %clang_analyze_cc1 -analyzer-checker=alpha.security.MallocOverflow -verify %s
2 // expected-no-diagnostics
4 class A {
5 public:
6 A& operator<<(const A &a);
7 };
9 void f() {
10 A a = A(), b = A();
11 a << b;