/******************************************************************************
Online C++ Compiler.
Code, Compile, Run and Debug C++ program online.
Write your code in this editor and press "Run" button to compile and execute it.
*******************************************************************************/
#include <iostream>
using namespace std;
class test
{
public:
explicit test(std::string name) : m_name(name){;}
test& get_test()
{
return *this;
}
std::string m_name;
};
int main()
{
test t1("t1");
test t2 = t1.get_test();
t2.m_name = "t2";
std::cout << "t1 name:" << t1.m_name << std::endl;
std::cout << "t2 name:" << t2.m_name << std::endl;
return 0;
}