OSDN Git Service

2010-04-28 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / torture / pr43880.C
1 // { dg-do compile }
2
3 extern void xread(void *);
4 class test
5 {
6 public:
7     test(void);
8 };
9 test::test(void)
10 {
11   union {
12       char pngpal[1];
13   };
14   xread(pngpal);
15 }
16