#include <string> struct Result { const std::string& name; }; Result make_result() { std::string local = "ready"; return {local}; }