mirror of
https://github.com/mtshiba/pylyzer.git
synced 2025-07-07 17:45:00 +00:00
11 lines
95 B
Python
11 lines
95 B
Python
i: int
|
|
if True:
|
|
i = 1
|
|
else:
|
|
i = 2
|
|
|
|
j: int
|
|
if True:
|
|
j = "1" # ERR
|
|
else:
|
|
j = "2"
|