[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Import / local-struct / Inputs / Callee.cpp
blob96cd2f22e49349a39abbf384a88fe479befa06dc
1 struct Bar {
2 void bar(int _a, bool _b) {
4 struct S { int a; };
5 S s = { _a };
8 struct S { bool b; };
9 S t = { _b };