lean2/tests/lean/implicit7.lean
Leonardo de Moura 028a9bd9bd feat(frontends/lean/scanner): use Lua style comments in Lean
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2014-01-05 08:53:27 -08:00

12 lines
358 B
Text

Variable f {A : Type} (a : A) {B : Type} : A -> B -> A
Variable g {A B : Type} (a : A) {C : Type} : B -> C -> C
Notation 100 _ ; _ ; _ : f
Notation 100 _ ; _ ; _ : g
Check 10 ; true ; false
Check 10 ; 10 ; true
SetOption pp::notation false
Check 10 ; true ; false
Check 10 ; 10 ; true
SetOption pp::implicit true
Check 10 ; true ; false
Check 10 ; 10 ; true