Files
codeql/python/ql/src/Variables/ShadowBuiltin.py
2018-11-19 15:10:42 +00:00

9 lines
191 B
Python

def test():
int = 1 # Variable should be renamed to avoid
def print_int(): # shadowing the int() built-in function
print int
print_int()
print int
test()