summaryrefslogtreecommitdiffstatshomepage
path: root/tests/bytecode/mp-tests/class4.py
blob: 4cb62580934c5de562e98caefa1da5cde4c4c4c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
class A:
    def __init__(self, x):
        self.x = x
        self.y = 0

    def get(self):
        return self.x + self.y
A(1)
A(2).get()