summaryrefslogtreecommitdiffstats
path: root/test/input
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-03-18 17:43:41 (GMT)
committerBrad King <brad.king@kitware.com>2014-03-24 15:37:20 (GMT)
commit8b1ff3b91b2f5e9e9da2277131e5d303923edbb4 (patch)
tree585cd086ee02a60014b7df7ebaa2d51ce8f9b0f0 /test/input
parent2ccf3b840d595a2dcc154358d9effc0a93f5606b (diff)
downloadCastXML-8b1ff3b91b2f5e9e9da2277131e5d303923edbb4.zip
CastXML-8b1ff3b91b2f5e9e9da2277131e5d303923edbb4.tar.gz
CastXML-8b1ff3b91b2f5e9e9da2277131e5d303923edbb4.tar.bz2
Output: Desugar Class base class references
Report the canonical base type instead of a typedef type in order to match gccxml behavior.
Diffstat (limited to 'test/input')
-rw-r--r--test/input/Class-base-typedef.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/input/Class-base-typedef.cxx b/test/input/Class-base-typedef.cxx
new file mode 100644
index 0000000..159d0da
--- /dev/null
+++ b/test/input/Class-base-typedef.cxx
@@ -0,0 +1,3 @@
+class base {};
+typedef base base_t;
+class start: public base_t {};