[standalone] Update globals.py with type-inferred global var

This commit is contained in:
David Mak 2024-10-07 17:00:45 +08:00
parent 56c845aac4
commit 5839badadd
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ def output_int64(x: int64):
...
X: int32 = 0
Y: int64 = int64(1)
Y = int64(1)
def f():
global X, Y