Files
clang-p2996/lldb/test/API/lang/cpp/gmodules/basic/pch.h
Michael Buch 3b44c9af8e [lldb][tests] Move C++ gmodules tests into new gmodules/ subdirectory
This is in preparation for adding more gmodules
tests.

Differential Revision: https://reviews.llvm.org/D133876
2022-09-14 14:45:35 -04:00

18 lines
235 B
C++

template<typename T>
class GenericContainer {
private:
T storage;
public:
GenericContainer(T value) {
storage = value;
};
};
typedef GenericContainer<int> IntContainer;
struct Foo {
class Bar;
Bar *bar;
};