mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
12 lines
101 B
C++
12 lines
101 B
C++
|
|
int cppi = 3;
|
|
int cppj = 4;
|
|
|
|
void g(void) {
|
|
int &ri = cppi;
|
|
int &rj = cppj;
|
|
|
|
ri = 4;
|
|
}
|
|
|