Files
codeql/cpp/ql/test/examples/expressions/ReferenceDereference.cpp

6 lines
156 B
C++

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