mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
12 lines
121 B
C++
12 lines
121 B
C++
class C {
|
|
public:
|
|
C* d;
|
|
static void g(int x, int y);
|
|
};
|
|
|
|
void f() {
|
|
int i, j, k, l;
|
|
C c;
|
|
c.d->g(i + j, k - l);
|
|
}
|