blob: c0036f0fc6458fc6586e68a477550c569797bd3a [file] [log] [blame]
/* ICE with flexible arrays in non-lvalue structures. Bug 16566
(comment #5). */
struct A
{
int i;
int x[];
};
int foo(struct A a)
{
return (a,a).x[0];
}