1// bindgen-flags: -- -std=c++11
2
3template<typename T>
4class Point {
5    T x;
6    T y;
7};
8
9typedef Point<int> IntPoint2D;
10
11using IntVec2D = Point<int>;
12