OSDN Git Service

2003-01-08 Larin Hennessey <larin@science.oregonstate.edu>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.jason / this.C
1 // PRMS Id: 5190
2 // Bug: g++ fails to build up a const reference to `this'.
3 // Build don't link:
4
5 class X
6 {
7 public:
8     void member ();
9 };
10
11 void print (const X* const &);
12
13 void X::member ()
14 {
15     print (this);
16 }