lean4-htt/tests/lean/elab4b.lean
2016-09-17 12:54:20 -07:00

13 lines
230 B
Text

definition foo.f {A : Type*} {B : Type*} (a : A) (b : B) : A := a
definition boo.f (a : nat) (b : nat) (c : nat) := a + b + c
definition bla.f (a b c d : bool) := a
open boo foo bla
check f 0 1 2 3
check f 0 1
check f tt ff