summaryrefslogtreecommitdiffstats
path: root/test/input
diff options
context:
space:
mode:
Diffstat (limited to 'test/input')
-rw-r--r--test/input/FundamentalTypes.cxx15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/input/FundamentalTypes.cxx b/test/input/FundamentalTypes.cxx
new file mode 100644
index 0000000..7ec7c53
--- /dev/null
+++ b/test/input/FundamentalTypes.cxx
@@ -0,0 +1,15 @@
+namespace start {
+ typedef char t_Char;
+ typedef signed char t_SChar;
+ typedef unsigned char t_UChar;
+ typedef short t_Short;
+ typedef unsigned short t_UShort;
+ typedef int t_Int;
+ typedef unsigned int t_UInt;
+ typedef long t_Long;
+ typedef unsigned long t_ULong;
+ typedef long long t_LongLong;
+ typedef unsigned long long t_ULongLong;
+ typedef float t_Float;
+ typedef double t_Double;
+}