aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/output/Notations.v
diff options
context:
space:
mode:
authorGravatar Maxime Dénès <mail@maximedenes.fr>2016-06-29 08:13:32 +0200
committerGravatar Maxime Dénès <mail@maximedenes.fr>2016-06-29 09:32:46 +0200
commitdd8d2a1d017d20635f943af205dcb0127a992a59 (patch)
tree39adf846ee4134c10f73947378d69fde85b0c5b9 /test-suite/output/Notations.v
parent8e07227c5853de78eaed4577eefe908fb84507c0 (diff)
Fix issues in test-suite revealed by warnings.
Diffstat (limited to 'test-suite/output/Notations.v')
-rw-r--r--test-suite/output/Notations.v3
1 files changed, 1 insertions, 2 deletions
diff --git a/test-suite/output/Notations.v b/test-suite/output/Notations.v
index adba688e6..2ccca829d 100644
--- a/test-suite/output/Notations.v
+++ b/test-suite/output/Notations.v
@@ -133,8 +133,7 @@ Fail Notation "( x , y , .. , z )" := (pair x (pair y z)).
Fail Notation "( x , y , .. , z )" := (pair x .. (pair y w) ..).
(* Right-unbound variable *)
-(* Now allowed with an only parsing restriction *)
-Notation "( x , y , .. , z )" := (pair y .. (pair z 0) ..).
+Notation "( x , y , .. , z )" := (pair y .. (pair z 0) ..) (only parsing).
(* Not the right kind of recursive pattern *)
Fail Notation "( x , y , .. , z )" := (ex (fun z => .. (ex (fun y => x)) ..)).