Slightly improved test case

This commit is contained in:
Reijo Tomperi 2008-12-12 23:01:39 +00:00
parent dd7e012509
commit 8ad2c58c56
1 changed files with 1 additions and 1 deletions

View File

@ -1049,7 +1049,7 @@ private:
check( "void foo()\n" check( "void foo()\n"
"{\n" "{\n"
" char *a = (char *)malloc(10);\n" " char *a = (char *)malloc(10);\n"
" a = a + 10;\n" " a = (void *)a + 10;\n"
" free(a - 10);\n" " free(a - 10);\n"
"}\n" ); "}\n" );