summaryrefslogtreecommitdiffstats
path: root/test/Analysis/new.cpp
blob: 29ac5eebd24238fb55ca57b80196357e3d941596 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// RUN: %clang_cc1 -analyze -analyzer-checker=core -analyzer-store region -verify %s

void f1() {
  int *n = new int;
  if (*n) { // expected-warning {{Branch condition evaluates to a garbage value}}
  }
}

void f2() {
  int *n = new int(3);
  if (*n) { // no-warning
  }
}

OpenPOWER on IntegriCloud