Idris2/tests/idris2/with004/Issue637-2.idr
2021-02-23 10:52:22 +00:00

9 lines
112 B
Idris

namespace A
export
foo3 : Int -> Int
foo3 x with (x + 1)
foo3 x | y = y + x
foo4 : Int
foo4 = A.foo3 5