Commit 006262f0 authored by Stefan Behnel's avatar Stefan Behnel

new error test case for string to int conversion

parent a283bce5
cdef int c1 = "t" # works
cdef int c2 = "te" # fails
cdef int cx = "test" # fails
_ERRORS = """
2:14: Only coerce single-character ascii strings can be used as ints.
3:14: Only coerce single-character ascii strings can be used as ints.
"""
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment