Skip to content

Commit 08c67ac

Browse files
committed
Deprecate "~=" notation for JMeq in Program.Equality
Because of #16356
1 parent 03fcc8a commit 08c67ac

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
- **Deprecated:**
2+
notation ``_ ~= _`` for ``JMeq`` in
3+
``Coq.Program.Equality`` (`#16436
4+
<https://github.com/coq/coq/pull/16436>`_, by Gaëtan Gilbert).

theories/Program/Equality.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Ltac block_goal := match goal with [ |- ?T ] => change (block T) end.
3333
Ltac unblock_goal := unfold block in *.
3434

3535
(** Notation for heterogeneous equality. *)
36-
36+
#[deprecated(since="8.17")]
3737
Notation " x ~= y " := (@JMeq _ x _ y) (at level 70, no associativity).
3838

3939
(** Do something on an heterogeneous equality appearing in the context. *)

0 commit comments

Comments
 (0)