[PowerPC] Collect some CallLowering arguments into a struct. [NFC]
[llvm-project.git] / lldb / packages / Python / lldbsuite / test / lang / cpp / nested-class-other-compilation-unit / shared.h
blob627f49ab79c59085037cf52d1ead8741e9a08517
1 struct OuterX {
2 template<typename T>
3 struct Inner {
4 int oX_inner = 42;
5 };
6 };
8 struct OuterY {
9 template<typename T>
10 struct Inner {
11 typename OuterX::Inner<T> oY_inner;
15 struct WrapperB;
17 WrapperB* foo();