lean2/tests/lean/run/imp2.lean
Leonardo de Moura 3310eb3dfc feat(frontends/lean): remove restriction on implict arguments, add new test that demonstrates the new feature
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2014-09-07 12:29:32 -07:00

4 lines
94 B
Text

import data.num
check (λ {A : Type} (a : A), a) 10
check (λ {A} a, a) 10
check (λ a, a) 10