/* TAGS: min c */ #include void foo( bool x ) { if ( x ) { while ( true ) { foo( false ); } } } int main() { foo( true ); }