From: Matthias Braun Date: Mon, 19 Nov 2007 22:48:36 +0000 (+0000) Subject: C99 has stupid rules sometimes... X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=325014951e06da437d3b9f0bbfe62d9b6f124b23;p=cparser C99 has stupid rules sometimes... [r18491] --- diff --git a/parsetest/shouldfail/decl_after_label.c b/parsetest/shouldfail/decl_after_label.c new file mode 100644 index 0000000..dd45c60 --- /dev/null +++ b/parsetest/shouldfail/decl_after_label.c @@ -0,0 +1,5 @@ +void foo(void) +{ +lable: + int jummy = 5; +}