summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/special_methods_intbig.py
blob: 653422f213d5dbbdba57937ff4f02c257765835f (plain) (blame)
1
2
3
4
5
6
7
8
# Test class special methods, that use a bigint.

class A:
    def __int__(self):
        return 1 << 100


print(int(A()))