lean2/tests/lean/implicit7.lean
Leonardo de Moura 8c956280d9 chore(frontends/lean): rename setoption and setopaque commands to set::option and set::opaque
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2014-01-06 11:41:03 -08:00

12 lines
362 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
set::option pp::notation false
check 10 ; true ; false
check 10 ; 10 ; true
set::option pp::implicit true
check 10 ; true ; false
check 10 ; 10 ; true