summaryrefslogtreecommitdiff
path: root/tests/compile/nullptr.pyx
blob: 35b42d83b657d54996041d1c0f9074577715b1fb (plain)
1
2
3
4
5
6
7
8
9
10
# mode: compile

cdef char *p1
cdef int *p2
cdef int x

p1 = NULL
p2 = NULL
x = p1 == NULL
x = NULL == p2