diff options
author | bloodstalker <thabogre@gmail.com> | 2020-03-23 21:11:06 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2020-03-23 21:11:06 +0000 |
commit | cfbcdeb238cdaef5565b201d49f8f143d9262d53 (patch) | |
tree | fc0f1175ee8c285ceff0569ee6074973e53d111a /test/main.cpp | |
parent | update (diff) | |
parent | updated the README. fixed a bug with declrefexpr where it was checking too la... (diff) | |
download | cgrep-cfbcdeb238cdaef5565b201d49f8f143d9262d53.tar.gz cgrep-cfbcdeb238cdaef5565b201d49f8f143d9262d53.zip |
update
Diffstat (limited to '')
-rw-r--r-- | test/main.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/main.cpp b/test/main.cpp index 5c2ceb8..87b7eae 100644 --- a/test/main.cpp +++ b/test/main.cpp @@ -19,6 +19,13 @@ struct myStruct { union myUnion { int a; double b; + int app; +}; + +struct verymuchStruct { + int myinteger; + int yourinteger; + int ourinteger; }; void myFunc1(void) {} |