teak-llvm/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules/pch.h

13 lines
193 B
C++

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