typedef: fixed problem. ticket: #2414

This commit is contained in:
Robert Reif 2011-01-06 07:52:59 +01:00 committed by Daniel Marjamäki
parent b7a3fc4908
commit d7e170b3ca
1 changed files with 14 additions and 0 deletions

View File

@ -231,6 +231,7 @@ private:
TEST_CASE(simplifyTypedef71); // ticket #2348
TEST_CASE(simplifyTypedef72); // ticket #2375
TEST_CASE(simplifyTypedef73); // ticket #2412
TEST_CASE(simplifyTypedef74); // ticket #2414
TEST_CASE(simplifyTypedefFunction1);
TEST_CASE(simplifyTypedefFunction2); // ticket #1685
@ -4772,6 +4773,19 @@ private:
ASSERT_EQUALS("", errout.str());
}
void simplifyTypedef74() // ticket #2414
{
const char code[] = "typedef long (*state_func_t)(void);\n"
"typedef state_func_t (*state_t)(void);\n"
"state_t current_state = death;\n"
"static char get_runlevel(const state_t);\n";
const std::string expected = "; "
"long ( * ( * current_state ) ( void ) ) ( void ) = death ; "
"static char get_runlevel ( const long ( * ( * ) ( void ) ) ( void ) ) ;";
ASSERT_EQUALS(expected, sizeof_(code));
ASSERT_EQUALS("", errout.str());
}
void simplifyTypedefFunction1()
{
{