diff options
author | Araq <rumpf_a@web.de> | 2014-06-30 10:40:49 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-06-30 10:40:49 +0200 |
commit | 5f8ab1653ad38faf395daf1b8a70249f6954b1ba (patch) | |
tree | ca6f87bbd6603a14e02d7a7aed47cf24b793ed6c /compiler/c2nim/tests/struct_anonym.h | |
parent | c71d7213e80419d412d6f7cacc2430f047d30d94 (diff) | |
download | Nim-5f8ab1653ad38faf395daf1b8a70249f6954b1ba.tar.gz |
c2nim is not part of the compiler anymore
Diffstat (limited to 'compiler/c2nim/tests/struct_anonym.h')
-rw-r--r-- | compiler/c2nim/tests/struct_anonym.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/compiler/c2nim/tests/struct_anonym.h b/compiler/c2nim/tests/struct_anonym.h deleted file mode 100644 index 859bfc206..000000000 --- a/compiler/c2nim/tests/struct_anonym.h +++ /dev/null @@ -1,27 +0,0 @@ - -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 |