mirror of
https://github.com/github/codeql.git
synced 2026-03-06 23:56:48 +01:00
11 lines
91 B
C
11 lines
91 B
C
struct S {
|
|
char* name;
|
|
};
|
|
|
|
void v()
|
|
{
|
|
char c[] = "hello";
|
|
struct S s;
|
|
s.name = c;
|
|
}
|