Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
other
/
abstract3.C
blob: 95e293e501b2b01b9c8d4fe050aeed8b0080a0fb [
file
] [
log
] [
blame
]
// PR c++/51431
struct
A
// { dg-message "note" }
{
virtual
void
foo
()
=
0
;
// { dg-message "note" }
};
struct
B
{
A a
;
// { dg-error "abstract" }
B
()
:
a
()
{}
};