mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
9 lines
105 B
C++
9 lines
105 B
C++
struct X {
|
|
static int i;
|
|
};
|
|
|
|
void StaticMemberAccess(int i, X &xref) {
|
|
// i = X::i;
|
|
i = xref.i;
|
|
|
|
} |