// A little test for clang-lookup int foo(int abc) { // nested scopes, hiding names { int abc = 0; f_void_int( abc ); } return f_int_int( abc ); }
int main_cfunc(void) { // your code goes here int *p; int i = 30; p = &i; f_int(p); f_void_int(p); f_void_void(p); return 0; }