Commit b8bcbe3a by Volker Reichelt Committed by Volker Reichelt

re PR c++/15938 (ICE with anonymous unions)

	PR c++/15938
	* g++.dg/init/union2.C: New test.

From-SVN: r102235
parent f339fc8e
2005-07-21 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
PR c++/15938
* g++.dg/init/union2.C: New test.
2005-07-21 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
PR c/22393
* gcc.dg/complex-4.c: New test.
......
// PR c++/15938
// { dg-do compile }
// { dg-options "" }
typedef union
{
struct { int i; };
struct { char c; };
} A;
A a = { 0 };
A b = {{ 0 }};
A c = {{{ 0 }}}; // { dg-error "braces" }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment