From: Matthias Braun Date: Wed, 30 Jul 2008 18:43:41 +0000 (+0000) Subject: another error X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=22c5ce00cc321c373f4b275e2660cc6880e6c102;p=cparser another error [r20821] --- diff --git a/parsetest/constarraytd.c b/parsetest/constarraytd.c new file mode 100644 index 0000000..7c9236a --- /dev/null +++ b/parsetest/constarraytd.c @@ -0,0 +1,10 @@ +typedef float vec3_t[3]; + +void f(const vec3_t foo) { +} + +int main(void) { + const float *bla = 0; + f(bla); + return 0; +}