diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2014-06-28 02:24:36 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2014-06-28 02:24:36 +0200 |
commit | e383200cf8278efb876fb19b73fbec52e2cb4694 (patch) | |
tree | 7ad8c8cd67633bd876fea33b94394154659f653c /compiler/c2nim/tests/enum.h | |
parent | 43e717bcb33ce140f670e8ee2512c1333012e37b (diff) | |
parent | 2940aa5ee200354f2bfd06eddbe51a16a7397d3d (diff) | |
download | Nim-e383200cf8278efb876fb19b73fbec52e2cb4694.tar.gz |
Merge pull request #1260 from enurlyx/structs-in-structs
c2nim -> Support for anonymous structs/unions
Diffstat (limited to 'compiler/c2nim/tests/enum.h')
-rw-r--r-- | compiler/c2nim/tests/enum.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/compiler/c2nim/tests/enum.h b/compiler/c2nim/tests/enum.h new file mode 100644 index 000000000..16bc59058 --- /dev/null +++ b/compiler/c2nim/tests/enum.h @@ -0,0 +1,40 @@ + +enum vehicles +{ + car = 0x10, + truck, + boat = 0x01, + ship = 1, + speedboat = 1, + bicycle = 4, + bobycar +}; + +enum +{ + red = 4, + green = 2, + blue +}; + +typedef enum food +{ + bread = 4, + toast = 4, + bun = 0x04, + cucumber = 2, + chocolate = 6 +}; + +typedef enum numbers +{ + one = 1, + two, + nten = - 10, + nnine, + four = 4, + three = + 3, + positivenine = + 9, + nfour = - 4, + negativeten = -10 +}; \ No newline at end of file |