#include <stdio.h>
int main(void) {
	void* a;
	int* b=a;
	int(*c)()=a;
	puts("test call");
	return 0;
}