```cpp struct S { const S& get() { return *this; } }; struct T { std::string data; std::string_view getView() { return data; } } ``` Expected suggestions: ```cpp const S& get() [[clang::lifetimebound]] { return *this; } std::string_view getView() [[clang::lifetimebound]] { return data; } ```