summaryrefslogtreecommitdiffstats
path: root/clang/test/Analysis/test-include-cpp.cpp
blob: 2ac5e11c997e5df12a0fcb70acc87e0f1bde5c7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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}}
}
OpenPOWER on IntegriCloud