1 #include <stdio.h>
2 
3 int
main()4 main() {
5 	*&&bogus;  /* gcc 4.1.2 yields an internal compiler error for this */
6 	goto *&&bogus; /* this works even in 4.1.2 */
7 	puts("nonsense stuff");
8 bogus:
9 	puts("hello");
10 }
11 
12