4a96fefd96
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
11 lines
No EOL
216 B
Text
11 lines
No EOL
216 B
Text
import logic
|
|
|
|
variable nat : Type.{1}
|
|
variable int : Type.{1}
|
|
variable of_nat : nat → int
|
|
coercion of_nat
|
|
|
|
theorem tst (n : nat) : n = n :=
|
|
have H : true, from trivial,
|
|
calc n = n : refl _
|
|
... = n : refl _ |