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

13 lines
135 B
Python

"""
Test that shadowing a global with a class attribute does not produce a
warning.
"""
import fu
class bar:
fu = 1
print(fu)