[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Modules / pr56826.cppm
blobe6eb60bd2d0f74d2c61269ccd801afde87afe2c1
1 // RUN: %clang_cc1 -std=c++20 -fsyntax-only -verify %s
3 export module m3;
4 export template <class> struct X {
5   template <class Self> friend void f(Self &&self) {
6     (Self&)self; // expected-warning {{expression result unused}}
7   }
8 };
9 void g() { f(X<void>{}); } // expected-note {{in instantiation of function template specialization}}