宣言前に参照されている Cython 変数を報告します。

例:


cdef int c_x

print(c_x, c_y)  # 宣言の前に変数 'c_y' が使用されています

cdef int c_y = 0