This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c++/14469] [3.4 Regression] Cannot compile TAO (regression)


------- 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]