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