diff options
| author | Thomas Preud'homme <robotux@celest.fr> | 2014-03-31 22:58:17 +0800 |
|---|---|---|
| committer | Thomas Preud'homme <robotux@celest.fr> | 2014-03-31 22:59:10 +0800 |
| commit | 3e56584223a67a6c2f41a43cf38e0960e9992238 (patch) | |
| tree | 6e3c4fd4ee3dce993b114170cbbcecd772336545 /tests/tests2/63_local_enumerator_redefinition.c | |
| parent | a620b12dc18e7e40c7497dcfb976a5628c3e57f9 (diff) | |
| download | tinycc-3e56584223a67a6c2f41a43cf38e0960e9992238.tar.gz tinycc-3e56584223a67a6c2f41a43cf38e0960e9992238.tar.bz2 | |
Allow local redefinition of enumerator
Diffstat (limited to 'tests/tests2/63_local_enumerator_redefinition.c')
| -rw-r--r-- | tests/tests2/63_local_enumerator_redefinition.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/tests2/63_local_enumerator_redefinition.c b/tests/tests2/63_local_enumerator_redefinition.c new file mode 100644 index 0000000..dd4d8e0 --- /dev/null +++ b/tests/tests2/63_local_enumerator_redefinition.c @@ -0,0 +1,14 @@ +enum { + FOO, + BAR +}; + +int main(void) +{ + enum { + FOO = 2, + BAR + }; + + return BAR - FOO; +} |
