1 // PR c++/50059
2 
3 int i;
4 struct A { };
5 void f(A);
g()6 void g()
7 {
8   f(i = 0);			// { dg-error "i = 0" }
9 }
10