1# mypy: ignore-errors 2 3 4 5def div_int_future(): 6 return 1 / 2 7 8 9def div_float_future(): 10 return 3.14 / 0.125 11