summaryrefslogtreecommitdiffstats
path: root/tests/roots/test-inheritance/dummy/test_nested.py
blob: 4b6801892ec08185b46790097efdf778272026d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
"""Test with nested classes.
"""


class A:
    class B:
        pass


class C(A.B):
    pass