Commit 623baee2 by Jeffrey D. Oldham Committed by Jeffrey D. Oldham

re PR c++/47 (nested classes broken)

2003-01-27  Jeffrey D. Oldham  <oldham@codesourcery.com>

	PR c++/47
	* g++.old-deja/g++.other/lookup24.C: New test.

From-SVN: r61950
parent 8a381273
2003-01-27 Jeffrey D. Oldham <oldham@codesourcery.com>
PR c++/47
* g++.old-deja/g++.other/lookup24.C: New test.
2003-01-27 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
PR middle-end/7227
......
// Build don't link:
//
// Copyright (C) 2003 Free Software Foundation, Inc.
// Contributed by Raymond <raymond@magma.magma-da.com>.
//
// PR c++/47 The parser failed to resolve 'B' in the return type of
// A::C::D::foo.
class A {
public:
class B;
class C;
};
class A::B {
};
class A::C {
class D;
};
class A::C::D {
public:
B* foo();
};
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