blob: 544db6c361a56a66a69244714bcee77900749113 [file] [log] [blame]
// PRMS Id: 5190
// Bug: g++ fails to build up a const reference to `this'.
// Build don't link:
class X
{
public:
void member ();
};
void print (const X* const &);
void X::member ()
{
print (this);
}