summaryrefslogtreecommitdiff
path: root/tests/compile/excvaldecl.pyx
diff options
context:
space:
mode:
Diffstat (limited to 'tests/compile/excvaldecl.pyx')
-rw-r--r--tests/compile/excvaldecl.pyx8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/compile/excvaldecl.pyx b/tests/compile/excvaldecl.pyx
index 06af71ce0..63f3c65dc 100644
--- a/tests/compile/excvaldecl.pyx
+++ b/tests/compile/excvaldecl.pyx
@@ -18,17 +18,9 @@ cdef int brian() except? 0:
cdef int silly() except -1:
pass
-cdef int not_so_silly() noexcept:
- pass
-
-cdef int not_so_silly_and_gilless() noexcept nogil:
- pass
-
spam()
eggs()
grail()
tomato()
brian()
silly()
-not_so_silly()
-not_so_silly_and_gilless()