1
1
mirror of https://github.com/anoma/juvix.git synced 2025-01-07 16:22:14 +03:00
juvix/tests/Internal/positive/IdenFunctionArgsImplicit.juvix
2022-11-07 14:47:56 +01:00

12 lines
151 B
Plaintext

module IdenFunctionArgsImplicit;
open import Stdlib.Prelude;
f : {A : Type} → Nat → A → Nat;
f x y := x;
main : Nat;
main := f 100 200;
end;