Ticket #6164: Added test case that now works (failed in 1.66).

This commit is contained in:
Simon Martin 2014-09-12 21:56:13 +02:00
parent 210d01c274
commit bf3a8686ec
1 changed files with 9 additions and 0 deletions

View File

@ -1208,6 +1208,15 @@ private:
"class MS : public M\n"
"{ virtual void addController(C*) override {} };");
ASSERT_EQUALS("", errout.str());
// #6164
checkOldStylePointerCast("class Base {};\n"
"class Derived: public Base {};\n"
"void testCC() {\n"
" std::vector<Base*> v;\n"
" v.push_back((Base*)new Derived);\n"
"}");
ASSERT_EQUALS("[test.cpp:5]: (style) C-style pointer casting\n", errout.str());
}
void checkInvalidPointerCast(const char code[], bool portability = true, bool inconclusive = false) {