This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/14469] [3.4 Regression] Cannot compile TAO (regression)
- From: "reichelt at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 8 Mar 2004 15:36:27 -0000
- Subject: [Bug c++/14469] [3.4 Regression] Cannot compile TAO (regression)
- References: <20040307211200.14469.schmid@snake.iap.physik.tu-darmstadt.de>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From reichelt at gcc dot gnu dot org 2004-03-08 15:36 -------
This reduces to
=============================
struct A
{
A();
};
struct B
{
B(const A*);
};
struct C
{
void foo(int);
B b;
};
void C::foo(int)
{
b = new A;
}
=============================
which is a duplicate of PR 14477.
*** This bug has been marked as a duplicate of 14477 ***
--
What |Removed |Added
----------------------------------------------------------------------------
CC| |reichelt at gcc dot gnu dot
| |org
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14469