mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 21:35:58 +00:00
9 lines
153 B
Python
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
|