xref: /aosp_15_r20/external/pytorch/torch/testing/_internal/test_module/future_div.py (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
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