mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
9 lines
139 B
C++
9 lines
139 B
C++
// semmle-extractor-options: --edg --permissive
|
|
static void f(char* foo) {}
|
|
|
|
static void g(void) {
|
|
const char* str = "foo";
|
|
f(str);
|
|
}
|
|
|