index
:
coq
master
The formal proof system
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
test-suite
/
success
/
Rename.v
blob: edb20a81a69ffa30ffda6e049f65ec2bfd72325e (
plain
)
1
2
3
4
5
Goal
(
n:
nat
)(
n
=
O
)
->
(
n
=
O
).
Intros
.
Rename
n
into
p
.
NewInduction
p
;
Auto
.
Qed
.