Bug 1879449 [wpt PR 44489] - [wptrunner] Add `infrastructure/expected-fail/` test...
[gecko.git] / tools / clang-tidy / test / clang-analyzer-core.NullDereference.cpp
blob6c9c5555325a42a113cd28d985aa7ce9973c37e7
1 class C {
2 public:
3 int x;
4 };
6 void test() {
7 C *pc = 0;
8 int k = pc->x;