llvm-project/clang/test/Analysis/test-include-cpp.cpp
Dominic Chen 8589e10c30 Revert "[analyzer] NFC: Update test infrastructure to support multiple constraint managers"
This reverts commit 8e7780b9e59ddaad1800baf533058d2c064d4787.

llvm-svn: 296317
2017-02-27 03:29:25 +00:00

14 lines
321 B
C++

// RUN: %clang_cc1 -analyze -analyzer-checker=core -verify %s
#include "test-include-cpp.h"
int TestIncludeClass::test1(int *p) {
p = 0;
return *p; // expected-warning{{Dereference of null pointer}}
}
int TestIncludeClass::test2(int *p) {
p = 0;
return *p; // expected-warning{{Dereference of null pointer}}
}