bad sizeof handling
This commit is contained in:
parent
b30e78e14c
commit
12b6cf8c70
|
@ -67,6 +67,8 @@ private:
|
||||||
TEST_CASE(noerr2);
|
TEST_CASE(noerr2);
|
||||||
TEST_CASE(noerr3);
|
TEST_CASE(noerr3);
|
||||||
TEST_CASE(noerr4);
|
TEST_CASE(noerr4);
|
||||||
|
|
||||||
|
TEST_CASE(sizeof1);
|
||||||
|
|
||||||
TEST_CASE(array_index_1);
|
TEST_CASE(array_index_1);
|
||||||
TEST_CASE(array_index_2);
|
TEST_CASE(array_index_2);
|
||||||
|
@ -157,6 +159,21 @@ private:
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
void sizeof1()
|
||||||
|
{
|
||||||
|
check("static void f()\n"
|
||||||
|
"{\n"
|
||||||
|
" char data[10];\n"
|
||||||
|
" data[ sizeof(*data) ] = 0;\n"
|
||||||
|
"}\n");
|
||||||
|
ASSERT_EQUALS(std::string(""), errout.str());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
void array_index_1()
|
void array_index_1()
|
||||||
{
|
{
|
||||||
check("void f()\n"
|
check("void f()\n"
|
||||||
|
|
Loading…
Reference in New Issue