Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
cython
Commits
b320d785
Commit
b320d785
authored
Feb 05, 2011
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix error test case
parent
e7336e2f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
tests/errors/e_declarations.pyx
tests/errors/e_declarations.pyx
+2
-1
No files found.
tests/errors/e_declarations.pyx
View file @
b320d785
...
@@ -7,9 +7,10 @@ cdef void f():
...
@@ -7,9 +7,10 @@ cdef void f():
cdef
int
(
*
h
)()
cdef
int
(
*
h
)()
h
=
<
int
()()
>
f
# this is an error
h
=
<
int
()()
>
f
# this is an error
h
=
<
int
(
*
)()
>
f
# this is OK
h
=
<
int
(
*
)()
>
f
# this is OK
_ERRORS
=
u"""
_ERRORS
=
u"""
1:19: Array element cannot be a function
1:19: Array element cannot be a function
2:18: Function cannot return an array
3:18: Function cannot return a function
3:18: Function cannot return a function
8:10: Function cannot return a function
8:10: Function cannot return a function
8:5: Cannot cast to a function type
8:5: Cannot cast to a function type
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment