add missing flag. this testcase should only run in non-simplified mode.

This commit is contained in:
Daniel Marjamäki 2014-07-30 12:18:47 +02:00
parent 473b1bdb2b
commit e8451b5d91
1 changed files with 1 additions and 1 deletions

View File

@ -379,7 +379,7 @@ private:
check("void f(WIDGET *widget) {\n"
" if (dynamic_cast<BUTTON*>(widget)){}\n"
" else if (dynamic_cast<LABEL*>(widget)){}\n"
"}");
"}",false);
ASSERT_EQUALS("", errout.str());
}