lean4-htt/tests/lean/elab1.lean
2016-07-26 14:37:43 -07:00

25 lines
375 B
Text

definition foo.subst := @eq.subst
definition boo.subst := @eq.subst
definition foo.add := @add
definition boo.add := @add
set_option pp.all true
open foo boo
print raw subst -- subst is overloaded
print raw add -- add is overloaded
#elab @subst
#elab @@subst
open eq
#elab subst
constants a b : nat
constant H1 : a = b
constant H2 : a + b > 0
#elab eq.subst H1 H2