blob: 9d7b524b77e1e0a16f3e51bc90cb7783864540bd [file] [log] [blame]
class C(object):
def __init__(self):
self.foo = -1
def __mul__(self, other):
"""
:rtype: C
"""
return self
__rmul__ = __mul__