// RUN: %clang_cc1 %s -verify -fsyntax-only // expected-no-diagnostics template struct Bar { int* data; auto operator[](const int index) const [[clang::lifetimebound]] -> decltype(data[index]) { return data[index]; } }; int main() { Bar b; (void)b[2]; }