标签: c++ c++11
请考虑以下代码:
struct Foo { int x; int foo() const & { return x; } // ^^^ int& foo() & { return x; } // ^^^ };
在函数体之前突出显示的&符号的用途是什么?