public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* We are nesting functions now?
@ 2002-12-11 20:06 Matt Young
  2002-12-11 21:33 ` kwall
  0 siblings, 1 reply; 5+ messages in thread
From: Matt Young @ 2002-12-11 20:06 UTC (permalink / raw)
  To: gcc

/* This seems to work */
int  main() {
        void fi() {
                void f2() {
                        printf("F2\n");
                        }
                void f3() {
                        printf("F3\n");
                        f2();
                        }
                printf("F1\n");
                }
        fi();
        f3();
        return 1;
}

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2002-12-13  1:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-12-11 20:06 We are nesting functions now? Matt Young
2002-12-11 21:33 ` kwall
2002-12-11 22:19   ` Timothy J. Wood
2002-12-12  6:49     ` Kris Warkentin
2002-12-12 17:47       ` Paul Brook

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).