Commit 1d61579e by Mark Mitchell Committed by Mark Mitchell

re PR c++/21908 (poor diagnostic with vitrual base classes)

	PR c++/21908
	* g++.dg/parse/error28.C: New test.

From-SVN: r105637
parent 6fa05db6
2005-10-19 Mark Mitchell <mark@codesourcery.com>
PR c++/21908
* g++.dg/parse/error28.C: New test.
2005-10-19 Eric Botcazou <ebotcazou@libertysurf.fr>
* gcc.dg/profile-generate-2.c: New test.
// PR c++/21908
struct virt { virt () {} virt (int i) {} };
struct der : public virtual virt { // { dg-error "der" }
der (int i) : virt(i) {} // { dg-error "der" }
};
struct top : public der {
// { dg-error "der\\(\\)" "" { target *-*-* } 9 }
top () {} // { dg-bogus "der\\(const" }
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment