summaryrefslogtreecommitdiffstats
path: root/test/input
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-02-25 20:37:23 (GMT)
committerBrad King <brad.king@kitware.com>2014-03-21 21:04:46 (GMT)
commit0cca6e038f01e444b1374cf1480a46f2c3806e52 (patch)
tree5d9bda45c85b19d358942b7ee8db06af9a28345a /test/input
parent4cd1c0d6bbf6a841b5d70e35921ef9174224f294 (diff)
downloadCastXML-0cca6e038f01e444b1374cf1480a46f2c3806e52.zip
CastXML-0cca6e038f01e444b1374cf1480a46f2c3806e52.tar.gz
CastXML-0cca6e038f01e444b1374cf1480a46f2c3806e52.tar.bz2
Output: Desugar template specialization types
Replace them with the underlying type.
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;