summaryrefslogtreecommitdiffstats
path: root/test/input
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2017-09-28 10:59:54 (GMT)
committerBrad King <brad.king@kitware.com>2017-09-28 11:14:15 (GMT)
commitbbe3117a26ad11ba74a8f2c3f0a38bf3ef9864bb (patch)
treed58d858b4dea372c56954f7dd7b57f6f2911a32b /test/input
parente51382fbcccc390a25d90f2103838c6e979e7e30 (diff)
downloadCastXML-bbe3117a26ad11ba74a8f2c3f0a38bf3ef9864bb.zip
CastXML-bbe3117a26ad11ba74a8f2c3f0a38bf3ef9864bb.tar.gz
CastXML-bbe3117a26ad11ba74a8f2c3f0a38bf3ef9864bb.tar.bz2
Output: Desugar 'auto' types
When an `auto` type is encountered in an interface, desugar it through to the deduced type. Issue: #89
Diffstat (limited to 'test/input')
-rw-r--r--test/input/Function-auto.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/input/Function-auto.cxx b/test/input/Function-auto.cxx
new file mode 100644
index 0000000..fa615da
--- /dev/null
+++ b/test/input/Function-auto.cxx
@@ -0,0 +1,4 @@
+auto start()
+{
+ return 1;
+}