summaryrefslogtreecommitdiff
path: root/tests/errors/unicode_identifiers_e3.pyx
blob: e5cba9caa543a63060da48d7949ad9009d60f24f (plain)
1
2
3
4
5
6
7
8
9
10
11
# -*- coding: utf-8 -*-
# mode: error

def f():
    a = 1
    ́b = 2 # looks like an indentation error but is actually a combining accent as the first letter of column 4
    c = 3

_ERRORS = u"""
6:4: Unrecognized character
"""