#include <iostream>

class Test {
public:
	void test() {
		std::cout << this << std::endl;
	}
};

Test & create()
{
	return *((Test*)NULL);
}

int main()
{
	Test &t = create();
	t.test();
}