diff options
Diffstat (limited to 'tests/headers/using.hpp')
-rw-r--r-- | tests/headers/using.hpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/headers/using.hpp b/tests/headers/using.hpp new file mode 100644 index 00000000..ba07b9c8 --- /dev/null +++ b/tests/headers/using.hpp @@ -0,0 +1,11 @@ +// bindgen-flags: -- -std=c++11 + +template<typename T> +class Point { + T x; + T y; +}; + +typedef Point<int> IntPoint2D; + +using IntVec2D = Point<int>; |