#include <iostream>

int main() {
	std::string str = "test";
	std::string& ref = (std::string&) str;
	
	std::cout << ref << std::endl;
	
	return 0;
}