blob: ba07b9c8a45a33c66ce0dba8db9e2919add198d9 [file] [log] [blame]
// bindgen-flags: -- -std=c++11
template<typename T>
class Point {
T x;
T y;
};
typedef Point<int> IntPoint2D;
using IntVec2D = Point<int>;