summaryrefslogtreecommitdiff
path: root/tests/errors/e_cdefemptysue.pyx
diff options
context:
space:
mode:
Diffstat (limited to 'tests/errors/e_cdefemptysue.pyx')
-rw-r--r--tests/errors/e_cdefemptysue.pyx13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/errors/e_cdefemptysue.pyx b/tests/errors/e_cdefemptysue.pyx
index f71370f4a..7f218b1fe 100644
--- a/tests/errors/e_cdefemptysue.pyx
+++ b/tests/errors/e_cdefemptysue.pyx
@@ -8,8 +8,21 @@ ctypedef union eggs:
cdef enum ham:
pass
+
+
+cdef struct flat_spam: pass
+
+ctypedef union flat_eggs: pass
+
+cdef enum flat_ham: pass
+
+
_ERRORS = u"""
3:5: Empty struct or union definition not allowed outside a 'cdef extern from' block
6:0: Empty struct or union definition not allowed outside a 'cdef extern from' block
9:5: Empty enum definition not allowed outside a 'cdef extern from' block
+
+13:5: Empty struct or union definition not allowed outside a 'cdef extern from' block
+15:0: Empty struct or union definition not allowed outside a 'cdef extern from' block
+17:5: Empty enum definition not allowed outside a 'cdef extern from' block
"""