mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
10 lines
95 B
C++
10 lines
95 B
C++
int *a, **b, ***c;
|
|
|
|
extern void use(int *x, ...);
|
|
|
|
void f()
|
|
{
|
|
c = &(b = &a);
|
|
use(a, b, c);
|
|
}
|