Open
Description
Originally reported by: Claudiu Popa (BitBucket: PCManticore, GitHub: @PCManticore)
#!python
class A:
def __init__(self, first, second):
self.first = first
self.second = second
a = A(1, 2)
a.first # infer it as 1