2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / this.C
blob17e897851481b215dfbb275fb5defc8ae85f35b3
1 // { dg-do assemble  }
2 // PRMS Id: 5190
3 // Bug: g++ fails to build up a const reference to `this'.
5 class X
7 public:
8     void member ();
9 };
11 void print (const X* const &);
13 void X::member ()
15     print (this);