pylyzer/tests/widening.py
Shunsuke Shibayama c985e798f0 build: update deps
2024-12-25 02:52:25 +09:00

10 lines
187 B
Python

b = False
if True:
b = True
if True:
b = "a" # ERR
counter = 100 # counter: Literal[100]
while counter > 0:
counter -= 1 # counter: Int
counter -= 1.0 # counter: Float