xref: /aosp_15_r20/external/pytorch/torch/testing/_internal/test_module/no_future_div.py (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
1# mypy: ignore-errors
2
3import torch  # noqa: F401
4
5
6def div_int_nofuture():
7    return 1 / 2
8
9
10def div_float_nofuture():
11    return 3.14 / 0.125
12