summaryrefslogtreecommitdiff
path: root/tests/errors/typoT304.pyx
blob: 7c736c898d936a5519664b1e3a9cf1a1e9457dbb (plain)
1
2
3
4
5
6
7
8
9
# ticket: 304
# mode: error

def f():
    print assert sizeof(int) == sizof(short) == sizeof(long)

_ERRORS = u"""
5:10: Expected an identifier or literal
"""