1# Tests that illegal member and vtab entries are mangled.
2cdef class A:
3    """
4    >>> a = A(100)
5    >>> a.case()
6    100
7    """
8    def __init__(self, value):
9        self.switch = value
10    cdef int switch
11    cpdef case(self):
12        return self.switch
13