blob: ea5b04684d7f62c99d92ae7abdf3f496c5a30e05 [file] [log] [blame]
Zhongxing Xub13453b2010-11-20 06:53:12 +00001// RUN: %clang_cc1 -analyze -analyzer-check-objc-mem -analyzer-store region -analyzer-inline-call -cfg-add-implicit-dtors -verify %s
2
3class A {
4public:
5 ~A() {
6 int *x = 0;
7 *x = 3; // expected-warning{{Dereference of null pointer}}
8 }
9};
10
11int main() {
12 A a;
13}