```cpp const int& foo(const int& x [[clang::lifetimebound]] = 0) { return x; } int main() { const int& x = foo(); // No error return x; } ```