#include <string>
using std::string;
void foo(const string& goo)
{
}

int main()
{
   foo("bla");
}