roc/compiler/load/tests/fixtures/build/interface_with_deps/WithBuiltins.roc
Jan Van Bruggen 8e4b6f0cab Remove Num.(min/max)Int
Replace all uses with `Num.(min/max)I64`,
since all uses expect an `I64`.
2022-01-19 09:55:06 -07:00

19 lines
346 B
Text

interface WithBuiltins
exposes [ floatTest, divisionFn, divisionTest, intTest, constantNum, fromDep2, divDep1ByDep2 ]
imports [ Dep1, Dep2.{ two } ]
floatTest = Num.maxFloat
divisionFn = Num.div
x = 5.0
divisionTest = Num.maxFloat / x
intTest = Num.maxI64
constantNum = 5
fromDep2 = Dep2.two
divDep1ByDep2 = Dep1.three / fromDep2