blob: dba4fee9a8c21d81b5d6ae86e15f138088c34501 [file] [log] [blame]
template<typename T>
class GenericContainer {
private:
T storage;
public:
GenericContainer(T value) {
storage = value;
};
};
typedef GenericContainer<int> IntContainer;
struct Foo {
class Bar;
Bar *bar;
};