5eaf04518b
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
11 lines
332 B
Text
11 lines
332 B
Text
definition Prop : Type.{1} := Type.{0}
|
|
section
|
|
parameter {A : Type} -- Mark A as implicit parameter
|
|
parameter R : A → A → Prop
|
|
definition id (a : A) : A := a
|
|
definition refl : Prop := forall (a : A), R a a
|
|
definition symm : Prop := forall (a b : A), R a b -> R b a
|
|
end
|
|
check id.{2}
|
|
check refl.{1}
|
|
check symm.{1}
|