Importing netbsd clang -- pristine
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
// RUN: %clang_cc1 -analyze -analyzer-checker=core,debug.ExprInspection -analyzer-config c++-inlining=constructors -verify %s
|
||||
|
||||
void clang_analyzer_eval(bool);
|
||||
|
||||
class A {
|
||||
int x;
|
||||
public:
|
||||
A();
|
||||
int getx() const {
|
||||
return x;
|
||||
}
|
||||
};
|
||||
|
||||
A::A() : x(0) {
|
||||
}
|
||||
|
||||
class B : public A {
|
||||
int y;
|
||||
public:
|
||||
B();
|
||||
};
|
||||
|
||||
B::B() {
|
||||
}
|
||||
|
||||
void f() {
|
||||
B b;
|
||||
clang_analyzer_eval(b.getx() == 0); // expected-warning{{TRUE}}
|
||||
}
|
||||
Reference in New Issue
Block a user