summaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/shouldsucceed/1519.v
blob: 66bab241d8e71e99f2b1b0cef603966f2509a97b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Section S.

  Variable A:Prop.
  Variable W:A.

  Remark T: A -> A.
    intro Z.
    rename W into Z_.
    rename Z into W.
    rename Z_ into Z.
    exact Z.
  Qed.

End S.