1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
/* { dg-do compile } */ /* { dg-options "-O0 -Werror -Wreturn-type" } */ /* Test-case from http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25973#c4. */ struct Block { public: Block (); ~Block (); }; bool func (bool bar) { Block block; bool foo = false; if (!foo || bar) do { return true; } while (0); else do { return false; } while (0); }