2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb90.C
blob06232411208990b77036d2774a7e5a84bf030869
1 // { dg-do assemble  }
2 // { dg-options "-O2" }
4 #ifdef HIDE_BUG
5 #define realloc Realloc
6 #endif
8 class TmpRgn {
9 public:
10      void
11    realloc();
14 class TmpActor {
15     TmpRgn      tmpRgn;
17 public:
18       void
19       realloc() {
20           tmpRgn.realloc();
21       }