rt_gccstream/gcc/testsuite/g++.dg/other/error13.C

11 lines
239 B
C

//PR c++/28258
struct A // { dg-message "note" }
{
A(void x); // { dg-error "invalid use|incomplete type|candidates" }
};
struct B : A {}; // { dg-error "no matching function for call" }
B b; // { dg-message "synthesized method" }