aboutsummaryrefslogtreecommitdiff
path: root/theories
diff options
context:
space:
mode:
Diffstat (limited to 'theories')
-rw-r--r--theories/Init/Notations.v3
-rw-r--r--theories/Init/Specif.v2
2 files changed, 0 insertions, 5 deletions
diff --git a/theories/Init/Notations.v b/theories/Init/Notations.v
index 07d7f91506..a7bdba90aa 100644
--- a/theories/Init/Notations.v
+++ b/theories/Init/Notations.v
@@ -69,9 +69,6 @@ Reserved Notation "{ x }" (at level 0, x at level 99).
Reserved Notation "{ x | P }" (at level 0, x at level 99).
Reserved Notation "{ x | P & Q }" (at level 0, x at level 99).
-Reserved Notation "{ x & P }" (at level 0, x at level 99).
-Reserved Notation "{ x & P & Q }" (at level 0, x at level 99).
-
Reserved Notation "{ x : A | P }" (at level 0, x at level 99).
Reserved Notation "{ x : A | P & Q }" (at level 0, x at level 99).
diff --git a/theories/Init/Specif.v b/theories/Init/Specif.v
index ecdbef7f61..1384901b70 100644
--- a/theories/Init/Specif.v
+++ b/theories/Init/Specif.v
@@ -48,8 +48,6 @@ Notation "{ x | P & Q }" := (sig2 (fun x => P) (fun x => Q)) : type_scope.
Notation "{ x : A | P }" := (sig (A:=A) (fun x => P)) : type_scope.
Notation "{ x : A | P & Q }" := (sig2 (A:=A) (fun x => P) (fun x => Q)) :
type_scope.
-Notation "{ x & P }" := (sigT (fun x => P)) : type_scope.
-Notation "{ x & P & Q }" := (sigT2 (fun x => P) (fun x => Q)) : type_scope.
Notation "{ x : A & P }" := (sigT (A:=A) (fun x => P)) : type_scope.
Notation "{ x : A & P & Q }" := (sigT2 (A:=A) (fun x => P) (fun x => Q)) :
type_scope.