diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/cpp/nested-class-other-compilation-unit/shared.h')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/cpp/nested-class-other-compilation-unit/shared.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/nested-class-other-compilation-unit/shared.h b/lldb/packages/Python/lldbsuite/test/lang/cpp/nested-class-other-compilation-unit/shared.h new file mode 100644 index 00000000000..627f49ab79c --- /dev/null +++ b/lldb/packages/Python/lldbsuite/test/lang/cpp/nested-class-other-compilation-unit/shared.h @@ -0,0 +1,17 @@ +struct OuterX { + template<typename T> + struct Inner { + int oX_inner = 42; + }; +}; + +struct OuterY { + template<typename T> + struct Inner { + typename OuterX::Inner<T> oY_inner; + }; +}; + +struct WrapperB; + +WrapperB* foo(); |