18 lines · cpp
1// RUN: %clang_cc1 %s -verify -fsyntax-only2 3// expected-no-diagnostics4 5template<typename T>6struct Bar {7 int* data;8 9 auto operator[](const int index) const [[clang::lifetimebound]] -> decltype(data[index]) {10 return data[index];11 }12};13 14int main() {15 Bar<int> b;16 (void)b[2];17}18