mirror of
https://github.com/github/codeql.git
synced 2025-12-24 12:46:34 +01:00
9 lines
311 B
Plaintext
9 lines
311 B
Plaintext
import python
|
|
private import semmle.python.dataflow.new.DataFlow
|
|
|
|
// Sometimes we accidentally re-export too much from `DataFlow` such that for example we can access `Add` from `DataFlow::Add` :(
|
|
//
|
|
// This test should always FAIL to compile!
|
|
from DataFlow::Add this_should_not_work
|
|
select this_should_not_work
|