1# test using the name "super" as a local variable
2
3class A:
4    def foo(self):
5        super = [1, 2]
6        super.pop()
7        print(super)
8
9A().foo()
10