2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / torture / pr43880.C
blobbf82bc54bc668e407f8959b486dcbe934803fe25
1 // { dg-do compile }
3 extern void xread(void *);
4 class test
6 public:
7     test(void);
8 };
9 test::test(void)
11   union {
12       char pngpal[1];
13   };
14   xread(pngpal);