blob: 968bb450a7134ae7555acfd6441b9f3a3269bf82 [file] [log] [blame]
/* ICE incrementing compound literal: bug 28418 from Volker Reichelt
<reichelt@gcc.gnu.org>. */
struct A { int i; };
void foo()
{
((struct A) { 0 }).i += 1;
}