mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
13 lines
135 B
Python
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)
|