Files
codeql/cpp/ql/test/library-tests/syntax-zoo/condition_decl_int.cpp
2019-08-06 14:10:25 +02:00

6 lines
67 B
C++

void ConditionDecl() {
int j = 0;
while(int k = j < 5) {
}
}