URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [other/] [abstract3.C] - Rev 693
Compare with Previous | Blame | View Log
// PR c++/51431
struct A // { dg-message "note" }
{
virtual void foo() = 0; // { dg-message "note" }
};
struct B
{
A a; // { dg-error "abstract" }
B() : a() {} // { dg-error "abstract" }
};