mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-01 14:21:53 +00:00
10 lines
172 B
Python
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
|