Files
third_party_rust_bindgen/tests/headers/using.hpp
T
2017-01-23 10:22:08 +01:00

12 lines
151 B
C++

// bindgen-flags: -- -std=c++11
template<typename T>
class Point {
T x;
T y;
};
typedef Point<int> IntPoint2D;
using IntVec2D = Point<int>;