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

10 lines
172 B
Python

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