blob: 07418aba985f9d916acaba6175bcddbdd06349f0 [file] [log] [blame]
// { dg-do compile }
// { dg-options "" }
struct A { int i; };
template<int t>
void foo()
{
((struct A) { 0 }).i += 1; // { dg-error "lvalue" }
}
void g(void)
{
foo<0>();
}