opnsense-src/test/Analysis/reference.cpp

12 lines
258 B
C++
Raw Normal View History

2010-02-16 04:31:36 -05:00
// RUN: %clang_cc1 -analyze -analyzer-experimental-internal-checks -analyzer-check-objc-mem -analyzer-store=region -analyzer-constraints=range -verify %s
2010-01-15 10:39:40 -05:00
void f1() {
int const &i = 3;
int b = i;
int *p = 0;
if (b != 3)
*p = 1; // no-warning
}