Fixed uncaught exception in testbufferoverrun.cpp

This commit is contained in:
PKEuS 2014-03-27 19:54:52 +01:00
parent 825b8b7c66
commit 63254b33f9
2 changed files with 6 additions and 7 deletions

View File

@ -3757,12 +3757,11 @@ private:
void executionPaths4() {
// Ticket #2386 - Segmentation fault upon strange syntax
epcheck("void f() {\n"
ASSERT_THROW(epcheck("void f() {\n"
" switch ( x ) {\n"
" case struct Tree : break;\n"
" }\n"
"}");
ASSERT_EQUALS("", errout.str());
"}"), InternalError);
}
void executionPaths5() {