summaryrefslogtreecommitdiff
path: root/tests/headers/using.hpp
blob: ba07b9c8a45a33c66ce0dba8db9e2919add198d9 (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>;