[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / SemaCXX / using-decl-pr4441.cpp
blobda21db311bb64b1558a958c6412c2e474e553c60
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // expected-no-diagnostics
4 namespace A {
5 struct B { };
6 void operator+(B,B);
9 using A::operator+;