Files
codeql/csharp/ql/test/library-tests/dataflow/global/DataFlowPath.ql
2023-04-12 11:15:14 +02:00

14 lines
244 B
Plaintext

/**
* @kind path-problem
*/
import csharp
import Common
import Flow::PathGraph
from Flow::PathNode source, Flow::PathNode sink, string s
where
Flow::flowPath(source, sink) and
s = sink.toString()
select sink, source, sink, s order by s