summaryrefslogtreecommitdiff
path: root/tests/headers/using.hpp
blob: fb848fd6f1474107d986170a6c9cdd0dab5496db (plain)
1
2
3
4
5
6
7
8
9
10
11
// bindgen-flags: -std=c++11

template<typename T>
class Point {
    T x;
    T y;
};

typedef Point<int> IntPoint2D;

using IntVec2D = Point<int>;