bolt/deps/llvm-18.1.8/lldb/test/API/lang/cpp/nested-class-other-compilation-unit/shared.h
2025-02-14 19:21:04 +01:00

17 lines
228 B
C++

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();