Fixed test case so that it would compile.
This commit is contained in:
parent
8022baec2a
commit
6649e31514
|
@ -704,7 +704,7 @@ private:
|
||||||
"{\n"
|
"{\n"
|
||||||
" char *str = malloc(10);\n"
|
" char *str = malloc(10);\n"
|
||||||
" if (somecondition)\n"
|
" if (somecondition)\n"
|
||||||
" for ( ; )\n"
|
" for ( ; ; )\n"
|
||||||
" { }\n"
|
" { }\n"
|
||||||
" return str;\n"
|
" return str;\n"
|
||||||
"}\n";
|
"}\n";
|
||||||
|
@ -712,7 +712,7 @@ private:
|
||||||
"{\n"
|
"{\n"
|
||||||
"char * str ; str = malloc ( 10 ) ;\n"
|
"char * str ; str = malloc ( 10 ) ;\n"
|
||||||
"if ( somecondition ) {\n"
|
"if ( somecondition ) {\n"
|
||||||
"for ( ; )\n"
|
"for ( ; ; )\n"
|
||||||
"{ } }\n"
|
"{ } }\n"
|
||||||
"return str ;\n"
|
"return str ;\n"
|
||||||
"}", tokenizeAndStringify(code, true));
|
"}", tokenizeAndStringify(code, true));
|
||||||
|
|
Loading…
Reference in New Issue