1"""
2    Test with nested classes.
3"""
4
5
6class A(object):
7    class B(object):
8        pass
9
10
11class C(A.B):
12    pass
13