diff options
author | bloodstalker <thabogre@gmail.com> | 2020-06-04 14:25:14 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2020-06-04 14:25:14 +0000 |
commit | 2948f61947b9790a29d34fc48d8e5683467919db (patch) | |
tree | ceff93e8c5a38fa9b0056b432672e7205bf5f0d8 /test/uniondecdef.cpp | |
parent | adding llvm11 to travis (diff) | |
download | cgrep-2948f61947b9790a29d34fc48d8e5683467919db.tar.gz cgrep-2948f61947b9790a29d34fc48d8e5683467919db.zip |
added a new switch:recorddecl. the test script is still WIP.
Diffstat (limited to 'test/uniondecdef.cpp')
-rw-r--r-- | test/uniondecdef.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/uniondecdef.cpp b/test/uniondecdef.cpp new file mode 100644 index 0000000..ebded31 --- /dev/null +++ b/test/uniondecdef.cpp @@ -0,0 +1,14 @@ + +namespace uniondecl_ns{ +union testUnion { + int reg; + bool b1; + bool b2; +}; + +#define uniondecdefmacro unionDecDefMacroExpanded +union uniondecdefmacro { + int reggie; + int bubu; +}; +}; // namespace |