brintos

brintos / llvm-project-archived public Read only

0
0
Text · 235 B · dba4fee Raw
18 lines · c
1template<typename T>2class GenericContainer {3  private:4    T storage;5 6  public:7    GenericContainer(T value) {8      storage = value;9    };10};11 12typedef GenericContainer<int> IntContainer;13 14struct Foo {15  class Bar;16  Bar *bar;17};18