Пример #1
0
// 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 );
}
Пример #2
0
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;
}