lean2/tests/lean/run/nat_coe.lean
Leonardo de Moura 919007612a fix(tests/lean): adjust tests since module 'logic' depends on nat
We need that because of the definitional package
2014-11-22 17:34:05 -08:00

27 lines
435 B
Text

import logic
namespace experiment
constant nat : Type.{1}
constant int : Type.{1}
constant nat_add : nat → nat → nat
infixl `+` := nat_add
constant int_add : int → int → int
infixl `+` := int_add
constant of_nat : nat → int
coercion of_nat
constants a b : nat
constants i j : int
definition c1 := a + b
theorem T1 : c1 = nat_add a b :=
eq.refl _
definition c2 := i + j
theorem T2 : c2 = int_add i j :=
eq.refl _
exit