From: Matthias Braun Date: Sun, 26 Oct 2008 18:44:46 +0000 (+0000) Subject: more tests X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=61c90befd50bc55de1321e7c9c493b0e59366916;p=cparser more tests [r23214] --- diff --git a/parsetest/function.c b/parsetest/function.c new file mode 100644 index 0000000..51a3374 --- /dev/null +++ b/parsetest/function.c @@ -0,0 +1,11 @@ +typedef void foo; + +foo function(foo) +{ +} + +int main(void) +{ + function(); + return 0; +}