mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
17 lines
186 B
C++
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
|
|
}
|