57c0006916
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
9 lines
No EOL
240 B
Text
9 lines
No EOL
240 B
Text
variable myeq : forall (A : Type), A -> A -> Bool
|
|
print myeq _ true false
|
|
variable T : Type
|
|
variable a : T
|
|
check myeq _ true a
|
|
variable myeq2 {A:Type} (a b : A) : Bool
|
|
infix 50 === : myeq2
|
|
set_option lean::pp::implicit true
|
|
check true === a |