string& func() {
static string s = "sex";
return s;
}

라고 치면

string x = func();

하면 걍 객체가 딥카피되는거임?