repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
Analysis
/
base-init.cpp
blob
1f59303789b35e0fe7f88d58e70d9bcd7d1b567d
1
// RUN: %clang_analyze_cc1 -analyzer-checker=core,debug.ExprInspection -analyzer-config c++-inlining=constructors -verify %s
2
3
void
clang_analyzer_eval
(
bool
);
4
5
class
A
{
6
int
x
;
7
public
:
8
A
();
9
int
getx
()
const
{
10
return
x
;
11
}
12
};
13
14
A
::
A
() :
x
(
0
) {
15
}
16
17
class
B
:
public
A
{
18
int
y
;
19
public
:
20
B
();
21
};
22
23
B
::
B
() {
24
}
25
26
void
f
() {
27
B b
;
28
clang_analyzer_eval
(
b
.
getx
() ==
0
);
// expected-warning{{TRUE}}
29
}