13 lines
228 B
Text
13 lines
228 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
|
|
|
|
#elab f 0 1 2 3
|
|
|
|
#elab f 0 1
|
|
|
|
#elab f tt ff
|