1 typedef int func();
2 
3 func lol;
4 
5 int
lol()6 lol()
7 {
8 	puts("hello");
9 }
10 
11 
12 int
main()13 main() {
14 	lol();
15 }
16 
17