repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr43880.C
blob
bf82bc54bc668e407f8959b486dcbe934803fe25
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