summaryrefslogtreecommitdiff
path: root/tests/errors/duplicate_const.pyx
blob: 1367dd13b48e8fc9e55627e60047b228cfde1d04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# mode: error

cdef extern from *:
    cdef const const int a
    cdef const volatile int b
    cdef volatile const int c
    cdef volatile volatile int d


_ERRORS = """
4:9: Duplicate 'const'
7:9: Duplicate 'volatile'
"""