blob: 055caf7f431985b5848c0e429af73b1767570092 [file] [log] [blame]
class A(object):
pass
class B(object):
pass
def foo(c):
x = A if c else B
y = A if c else 10
return x(), <warning descr="'y' is not callable">y()</warning>