another parse error
authorMatthias Braun <matze@braunis.de>
Sat, 29 Dec 2007 15:13:06 +0000 (15:13 +0000)
committerMatthias Braun <matze@braunis.de>
Sat, 29 Dec 2007 15:13:06 +0000 (15:13 +0000)
[r18836]

parsetest/cp_error019.c [new file with mode: 0644]

diff --git a/parsetest/cp_error019.c b/parsetest/cp_error019.c
new file mode 100644 (file)
index 0000000..4709052
--- /dev/null
@@ -0,0 +1,8 @@
+int main(void)
+{
+       enum { FALSE, TRUE } MYBOOL;
+
+       enum MYBOOL k = FALSE;
+
+       return k;
+}