repo.or.cz
/
gecko.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Bug 1879449 [wpt PR 44489] - [wptrunner] Add `infrastructure/expected-fail/` test...
[gecko.git]
/
tools
/
clang-tidy
/
test
/
clang-analyzer-core.NullDereference.cpp
blob
6c9c5555325a42a113cd28d985aa7ce9973c37e7
1
class
C
{
2
public
:
3
int
x
;
4
};
5
6
void
test
() {
7
C
*
pc
=
0
;
8
int
k
=
pc
->
x
;
9
}