mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
16 lines
95 B
C++
16 lines
95 B
C++
|
|
int main()
|
|
{
|
|
int i;
|
|
int *ip;
|
|
|
|
i = +(-1);
|
|
i++;
|
|
ip = &i;
|
|
*ip--;
|
|
++i;
|
|
--i;
|
|
|
|
return 0;
|
|
}
|