1 // { dg-options "-fshow-column -fmessage-length=0   -ansi -pedantic-errors -Wno-long-long " }
2 // PR C++/17867
3 
4 struct A			// { dg-message "8:operator=" }
5 {
6   A(int);
7 };
8 
9 const A& foo();
10 
bar()11 void bar()
12 {
13   foo()=A(0); // { dg-error "8:no match|const" }
14 }
15