From: Michael Beck Date: Thu, 18 Sep 2008 00:32:13 +0000 (+0000) Subject: enhanced X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;ds=sidebyside;h=ff9275337d9abfa5d75185b7609da7be1223f0af;p=cparser enhanced [r22067] --- diff --git a/parsetest/shouldfail/paramerror.c b/parsetest/shouldfail/paramerror.c index 2944024..6e4c6e1 100644 --- a/parsetest/shouldfail/paramerror.c +++ b/parsetest/shouldfail/paramerror.c @@ -1,4 +1,11 @@ -int func(int) +int func1(int) { return 0; } + +void func2(int x) { + int x; + { + int x; + } +}