mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
14 lines
187 B
C++
14 lines
187 B
C++
namespace {
|
|
struct Foo {
|
|
char string[10];
|
|
};
|
|
|
|
void acquire(char*);
|
|
|
|
Foo* test_self_argument_flow() {
|
|
Foo *info;
|
|
acquire(info->string); // clean
|
|
|
|
return info;
|
|
}
|
|
} |