3fa2a210b8074dd6c3669e2a373df59514ea5d31
[cython.git] / tests / broken / r_builtinlist.pyx
1 def f():
2     cdef list l
3     l = list()
4     l.append("second")
5     l.insert(0, "first")
6     return l