diff options
author | enurlyx <enurlyx@gmail.com> | 2014-06-10 22:16:04 +0200 |
---|---|---|
committer | enurlyx <enurlyx@gmail.com> | 2014-06-10 22:16:04 +0200 |
commit | 3648680f28245d5b184a9365d426b47ad769b5fe (patch) | |
tree | f1435fdbb6587ae860a33e916ba3d380c5649293 | |
parent | 33eeb66ea276a532782464638aff6d001fbef4de (diff) | |
download | Nim-3648680f28245d5b184a9365d426b47ad769b5fe.tar.gz |
Added test for anonymous structs and unions
-rw-r--r-- | compiler/c2nim/tests/struct_anonym.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/compiler/c2nim/tests/struct_anonym.h b/compiler/c2nim/tests/struct_anonym.h new file mode 100644 index 000000000..859bfc206 --- /dev/null +++ b/compiler/c2nim/tests/struct_anonym.h @@ -0,0 +1,27 @@ + +struct normal{ + int a; + int b; +}; + +typedef struct outerStruct { + struct normal a_nomal_one; + + int a; + + struct { + union { + int b; + } a_union_in_the_struct; + + int c; + }; + + union { + int d; + + struct { + int e; + } a_struct_in_the_union; + } a_union; +}; \ No newline at end of file |