aboutsummaryrefslogtreecommitdiff
path: root/tests/functional/n/no/no_member_nested_namedtuple.py
blob: 6a87ff63d75d6d76a545e198ea2d6185f8dfb52e (plain)
1
2
3
4
5
6
7
8
from typing import NamedTuple

class Ax(NamedTuple):
    class Bx:
        b = 0


print(Ax.Bx.b)