/* Test stack trampolines (nested functions). */ /* Should print "Hello nested world". */ #include void bar(void (*)()) { f(); } int main() { void f() { printf ("nested "); } printf ("Hello "); bar(f); printf ("world\n"); return 0; }