From: Christoph Mallon Date: Fri, 15 Aug 2008 19:56:24 +0000 (+0000) Subject: should fail: variable with incomplete type. X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=562989364201dd6b874d9a606a3334a20c1d0c15;p=cparser should fail: variable with incomplete type. [r21206] --- diff --git a/parsetest/shouldfail/incomplete_struct.c b/parsetest/shouldfail/incomplete_struct.c new file mode 100644 index 0000000..0c47251 --- /dev/null +++ b/parsetest/shouldfail/incomplete_struct.c @@ -0,0 +1,5 @@ +int main(void) +{ + struct S q, r; + return 0; +}