2014-01-05 20:05:08 +00:00
|
|
|
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
|
2014-01-09 16:33:52 +00:00
|
|
|
set_option pp::notation false
|
2014-01-05 20:05:08 +00:00
|
|
|
check 10 ; true ; false
|
|
|
|
check 10 ; 10 ; true
|
2014-01-09 16:33:52 +00:00
|
|
|
set_option pp::implicit true
|
2014-01-05 20:05:08 +00:00
|
|
|
check 10 ; true ; false
|
|
|
|
check 10 ; 10 ; true
|