diff options
Diffstat (limited to 'test/structdecl.cpp')
-rw-r--r-- | test/structdecl.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
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 |