blob: de0b40e2aec6e2ec16c9e69b37c30abdfb3d1625 [file] [log] [blame]
// PRMS Id: 5371
// Bug: g++ screws up the alignment of buff and dies.
// Build don't link:
// Special g++ Options: -O
main()
{
union {
double a;
char buff[sizeof(double)];
};
void *p = buff;
}