Files
codeql/cpp/ql/test/library-tests/dataflow/external-models/test.cpp
2024-06-03 13:49:38 +01:00

17 lines
186 B
C++

int ymlSource();
void ymlSink(int value);
int ymlStep(int value);
void test() {
int x = ymlSource();
ymlSink(0);
ymlSink(x); // $ ir
int y = ymlStep(x);
ymlSink(y); // $ ir
}