Example: ``` struct T{ void set(const int& t [[clang::lifetime_capture_by(this)]]); }; void s() { T().set(1); // we should not warn on this case. } ```