This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

We are nesting functions now?


/* 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;
}


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]