00e89190c2
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
12 lines
250 B
Text
12 lines
250 B
Text
Import "cast.lean"
|
|
Variable A : Type
|
|
Variable B : Type
|
|
Variable A' : Type
|
|
Variable B' : Type
|
|
Axiom H : (A -> B) = (A' -> B')
|
|
Variable a : A
|
|
Check DomInj H
|
|
Theorem BeqB' : B = B' := RanInj H a
|
|
SetOption pp::implicit true
|
|
Show DomInj H
|
|
Show RanInj H a
|