old-cross-binutils/gdb/testsuite/gdb.cp/pr-1553.cc
David Carlton 0e02aa5022 2004-03-12 David Carlton <carlton@kealia.com>
* gdb.cp/pr-1553.exp: New.  Tests for PR c++/1553.
	* gdb.cp/pr-1553.cc: Ditto.
	* gdb.cp/local.exp (ptype NestedInnerLocal): Add comment, third
	pass branch.
2004-03-12 17:46:27 +00:00

53 lines
602 B
C++

class A {
public:
class B;
class C;
};
class A::B {
int a_b;
public:
C* get_c(int i);
};
class A::C
{
int a_c;
};
class E {
public:
class F;
};
class E::F {
public:
int e_f;
F& operator=(const F &other);
};
void refer_to (E::F *f) {
// Do nothing.
}
void refer_to (A::C **ref) {
// Do nothing. But, while we're at it, force out debug info for
// A::B and E::F.
A::B b;
E::F f;
refer_to (&f);
}
int main () {
A::C* c_var;
A::B* b_var;
E *e_var;
// Keep around a reference so that GCC 3.4 doesn't optimize the variable
// away.
refer_to (&c_var);
}