From: Matthias Braun Date: Sat, 29 Dec 2007 15:13:06 +0000 (+0000) Subject: another parse error X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=217af6707a433c35532346aca7bea7c2877a7114;p=cparser another parse error [r18836] --- diff --git a/parsetest/cp_error019.c b/parsetest/cp_error019.c new file mode 100644 index 0000000..4709052 --- /dev/null +++ b/parsetest/cp_error019.c @@ -0,0 +1,8 @@ +int main(void) +{ + enum { FALSE, TRUE } MYBOOL; + + enum MYBOOL k = FALSE; + + return k; +}