aboutsummaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/lang/cpp/gmodules/pch.h
blob: a6c59b94c896f25e312c733360dadbe1676c5198 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
template<typename T>
class GenericContainer {
  private:
    T storage;

  public:
    GenericContainer(T value) {
      storage = value;
    };
};

typedef GenericContainer<int> IntContainer;