summaryrefslogtreecommitdiffstats
path: root/test/input
diff options
context:
space:
mode:
Diffstat (limited to 'test/input')
-rw-r--r--test/input/Typedef-to-Class-template.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/input/Typedef-to-Class-template.cxx b/test/input/Typedef-to-Class-template.cxx
new file mode 100644
index 0000000..f04a56e
--- /dev/null
+++ b/test/input/Typedef-to-Class-template.cxx
@@ -0,0 +1,2 @@
+template <typename T> class A;
+typedef A<int> start;