1// Bug: g++ is wrongfully pedantic about union initializers.
2// Build don't link:
3
4union U { int mbr; } array[1] = { 0 };
5