mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
17 lines
107 B
Python
17 lines
107 B
Python
"""Test: annotated global."""
|
|
|
|
|
|
n: int
|
|
|
|
|
|
def f():
|
|
print(n)
|
|
|
|
|
|
def g():
|
|
global n
|
|
n = 1
|
|
|
|
|
|
g()
|
|
f()
|