Files
codeql/cpp/downgrades/298438feb146335af824002589cd6d4e96e5dbf9/for_initialization.ql
2024-02-16 15:20:14 +01:00

10 lines
155 B
Plaintext

class Stmt extends @stmt {
string toString() { none() }
}
from Stmt f, Stmt i
where
for_initialization(f, i) and
f instanceof @stmt_for
select f, i