Strange ast2firm error for initializers.
authorChristoph Mallon <christoph.mallon@gmx.de>
Wed, 19 Dec 2007 13:53:52 +0000 (13:53 +0000)
committerChristoph Mallon <christoph.mallon@gmx.de>
Wed, 19 Dec 2007 13:53:52 +0000 (13:53 +0000)
[r18803]

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

diff --git a/parsetest/cp_error011.c b/parsetest/cp_error011.c
new file mode 100644 (file)
index 0000000..1e79a1d
--- /dev/null
@@ -0,0 +1,7 @@
+struct bla { int a; };
+void g(const struct bla);
+void h(struct bla);
+void f(void)
+{
+       const struct bla x = { 0 };
+}