forked from M-Labs/nac3
[standalone] Update globals.py with type-inferred global var
This commit is contained in:
parent
56c845aac4
commit
5839badadd
|
@ -7,7 +7,7 @@ def output_int64(x: int64):
|
||||||
...
|
...
|
||||||
|
|
||||||
X: int32 = 0
|
X: int32 = 0
|
||||||
Y: int64 = int64(1)
|
Y = int64(1)
|
||||||
|
|
||||||
def f():
|
def f():
|
||||||
global X, Y
|
global X, Y
|
||||||
|
|
Loading…
Reference in New Issue