summaryrefslogtreecommitdiffstats
path: root/test/Analysis/reference.cpp
blob: a641b8e8212f8de332069110f3d5f986825fe516 (plain)
1
2
3
4
5
6
7
8
9
10
11
// RUN: %clang_cc1 -analyze -analyzer-experimental-internal-checks -checker-cfref -analyzer-store=region -analyzer-constraints=range -verify %s

void f1() {
  int const &i = 3;
  int b = i;

  int *p = 0;

  if (b != 3)
    *p = 1; // no-warning
}
OpenPOWER on IntegriCloud