URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [other/] [error20.C] - Rev 701
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/34275
// { dg-do compile }
struct A // { dg-message "operator=|no known conversion" }
{
virtual A foo ();
};
void bar (A& a)
{
a.foo () = 0; // { dg-error "A::foo\\(\\) = 0" }
// { dg-message "candidate" "candidate note" { target *-*-* } 11 }
}
Go to most recent revision | Compare with Previous | Blame | View Log