Originally reported by: **Claudiu Popa (BitBucket: [PCManticore](http://bitbucket.org/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 ``` --- - Bitbucket: https://bitbucket.org/logilab/astroid/issue/142