Reports Cython variables being referenced before declaration.

Example:


cdef int c_x

print(c_x, c_y)  # Variable 'c_y' is used before its declaration

cdef int c_y = 0