Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr43880.C
blob: bf82bc54bc668e407f8959b486dcbe934803fe25 [
file
] [
log
] [
blame
]
// { dg-do compile }
extern
void
xread
(
void
*);
class
test
{
public
:
test
(
void
);
};
test
::
test
(
void
)
{
union
{
char
pngpal
[
1
];
};
xread
(
pngpal
);
}