mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-20 12:35:34 -04:00
10 lines
154 B
Python
10 lines
154 B
Python
# test using the name "super" as a local variable
|
|
|
|
class A:
|
|
def foo(self):
|
|
super = [1, 2]
|
|
super.pop()
|
|
print(super)
|
|
|
|
A().foo()
|