blob: 39443320953e6145a2db2b1ce6a7851a197fe08e [file] [log] [blame]
/* APPLE LOCAL file mainline 4.0.4 08-25-2006 4647057 */
/* ICE incrementing compound literal: bug 28418 from Volker Reichelt
<reichelt@gcc.gnu.org>. */
struct A { int i; };
void foo()
{
((struct A) { 0 }).i += 1;
}