ruff/crates/ruff_linter/resources/test/fixtures/pyflakes/F811_16.py
2023-09-20 08:38:27 +02:00

9 lines
153 B
Python

"""Test that shadowing a global with a nested function generates a warning."""
import fu
def bar():
def baz():
def fu():
pass