aboutsummaryrefslogtreecommitdiff
path: root/tests/tests2/63_local_enumerator_redefinition.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tests2/63_local_enumerator_redefinition.c')
-rw-r--r--tests/tests2/63_local_enumerator_redefinition.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/tests2/63_local_enumerator_redefinition.c b/tests/tests2/63_local_enumerator_redefinition.c
deleted file mode 100644
index dd4d8e0..0000000
--- a/tests/tests2/63_local_enumerator_redefinition.c
+++ /dev/null
@@ -1,14 +0,0 @@
-enum {
- FOO,
- BAR
-};
-
-int main(void)
-{
- enum {
- FOO = 2,
- BAR
- };
-
- return BAR - FOO;
-}