#include <iostream>
using namespace std;

struct S
{
	S(S const& s)	{ cout << this << "::S(" << &s << ")\n"; }
};

int main() 
{
	S s(s);
}