mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 12:51:09 +02:00
Differential Revision: https://phabricator.services.mozilla.com/D7045 --HG-- extra : moz-landing-system : lando
9 lines
No EOL
76 B
C++
9 lines
No EOL
76 B
C++
class C {
|
|
public:
|
|
int x;
|
|
};
|
|
|
|
void test() {
|
|
C *pc = 0;
|
|
int k = pc->x;
|
|
} |