File: bug_17687.v

package info (click to toggle)
coq 8.20.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 44,116 kB
  • sloc: ml: 234,160; sh: 4,301; python: 3,270; ansic: 2,644; makefile: 882; lisp: 172; javascript: 63; xml: 24; sed: 2
file content (11 lines) | stat: -rw-r--r-- 394 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
(* -*- coq-prog-args: ("-noinit"); -*- *)

Declare ML Module "ltac_plugin".
Global Set Default Proof Mode "Classic".

Inductive paths {A : Type} (a : A) : forall _:A, Type := idpath : paths a a.
Axiom transport : forall {A : Type} (x : A) (p : paths x x), paths x x.
Lemma t (x : Type) (eq : paths x x) : paths (transport x eq) (transport x eq).
Fail rewrite eq.
Succeed try rewrite eq.
Abort.