Files
codeql/cpp/ql/test/library-tests/exprs_basic/ExprsBasic4.ql
2018-08-02 17:53:23 +01:00

16 lines
259 B
Plaintext

/**
* @name ExprsBasic4
* @kind table
*/
import cpp
from Field f, string fname, string ftype
where f.hasName(fname)
and f.getDeclaringType().hasName(ftype)
and exists(f.getAnAccess())
select f, fname, f.getDeclaringType(), ftype, f.getAnAccess()