Files
2018-08-02 17:53:23 +01:00

12 lines
101 B
C++

int cppi = 3;
int cppj = 4;
void g(void) {
int &ri = cppi;
int &rj = cppj;
ri = 4;
}