Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
9a816162b363d936ac95d976bb8c7e826527dc08
/
.
/
test
/
Analysis
/
malloc-overflow.cpp
blob: e3a0408863e66522de3544266f9020acea4cf7c2 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -analyze -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
;
}