Files
codeql/cpp/ql/test/examples/expressions/ReferenceDereference.cpp
2018-08-02 17:53:23 +01:00

6 lines
137 B
C++

/*
there is an implicit compiler-generated dereference node before the access to the variable 'i'
*/
void v(int &i, int j) {
j = i;
}