another error
authorMatthias Braun <matze@braunis.de>
Wed, 30 Jul 2008 18:43:41 +0000 (18:43 +0000)
committerMatthias Braun <matze@braunis.de>
Wed, 30 Jul 2008 18:43:41 +0000 (18:43 +0000)
[r20821]

parsetest/constarraytd.c [new file with mode: 0644]

diff --git a/parsetest/constarraytd.c b/parsetest/constarraytd.c
new file mode 100644 (file)
index 0000000..7c9236a
--- /dev/null
@@ -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;
+}