[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / ASTMerge / inheritance / Inputs / inheritance-base.cpp
blob26fe42eb64da305eb4c9f295c22023c1f0119602
1 class A
3 public:
4 int x;
5 A(int _x) : x(_x) {
7 };