blob: 488d7d67991aed2d1ad85297d80cd0d2f1e9ae42 [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001class X(object):
2 def testChain(self):
3 return X()
4
5def g():
6 return X()
7
8g().testChain().te<caret>
9