Merge from trunk @ 138209
[official-gcc.git] / gcc / testsuite / g++.dg / parse / error19.C
blobb22156a5d717f5594ea41b4e7ebfee0ab418f647
1 // { dg-options "-fshow-column -fmessage-length=0   -ansi -pedantic-errors -Wno-long-long " }
2 // PR C++/17867
4 struct A
5 {  // { dg-error "1: note: candidates are:" }
6   A(int);
7 };
9 const A& foo();
11 void bar()
13   foo()=A(0); // { dg-error "12: error: no match for 'operator='" }