```c void foo(int *x) { *x = 0; } int main() { int x; foo(&x); return x; } ``` https://godbolt.org/z/Yof6d6EYb