From 2948f61947b9790a29d34fc48d8e5683467919db Mon Sep 17 00:00:00 2001 From: bloodstalker Date: Thu, 4 Jun 2020 18:55:14 +0430 Subject: added a new switch:recorddecl. the test script is still WIP. --- test/structdecl.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 test/structdecl.cpp (limited to 'test/structdecl.cpp') diff --git a/test/structdecl.cpp b/test/structdecl.cpp new file mode 100644 index 0000000..4fa57d4 --- /dev/null +++ b/test/structdecl.cpp @@ -0,0 +1,14 @@ + +namespace structdecl_ns{ +struct testStruct { + int a; + float b; + char c[10]; +}; + +#define structdeclmacro structDeclMacroExpanded +struct structdeclmacro { + int d; + double e; +}; +} // namespace -- cgit v1.2.3