From: Matthias Braun Date: Sat, 16 Feb 2008 15:40:49 +0000 (+0000) Subject: sizeof from string is defect X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=d4a96d645c7e60c4b012be99a955b34112639b36;p=cparser sizeof from string is defect [r18879] --- diff --git a/parsetest/cp_error023.c b/parsetest/cp_error023.c new file mode 100644 index 0000000..393326a --- /dev/null +++ b/parsetest/cp_error023.c @@ -0,0 +1,7 @@ +int main(void) +{ + if(sizeof("-o") != 3) + return 1; + + return 0; +}