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

17 lines
107 B
Python

"""Test: annotated global."""
n: int
def f():
print(n)
def g():
global n
n = 1
g()
f()