xref: /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.jason/this.C (revision c87b03e512fc05ed6e0222f6fb0ae86264b1d05b)
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 
member()13 void X::member ()
14 {
15     print (this);
16 }
17