summaryrefslogtreecommitdiffstats
path: root/Lib/test/shadowed_super.py
blob: 2a62f667e938186f2bf322437bfc5be5cc3401f2 (plain)
1
2
3
4
5
6
7
class super:
    msg = "truly super"


class C:
    def method(self):
        return super().msg