aboutsummaryrefslogtreecommitdiff
path: root/src/Util/Notations.v
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2017-05-14 12:37:00 -0400
committerGravatar Jason Gross <jgross@mit.edu>2017-05-14 12:37:09 -0400
commita0e84e10571c4ad12e1b5a46b981aa568127c393 (patch)
treec6c45901bc993a0142c90e62cd9a87d66cd785c3 /src/Util/Notations.v
parentb3fcceb99c724269200861e6d4763486bd1bd141 (diff)
Fix notation binding levels so types work in nlet
Diffstat (limited to 'src/Util/Notations.v')
-rw-r--r--src/Util/Notations.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Util/Notations.v b/src/Util/Notations.v
index a6e60f461..05ece8234 100644
--- a/src/Util/Notations.v
+++ b/src/Util/Notations.v
@@ -76,9 +76,9 @@ Reserved Notation "a # b" (at level 55, no associativity). (* match with theorie
Reserved Notation "'plet' x := y 'in' z"
(at level 200, z at level 200, format "'plet' x := y 'in' '//' z").
Reserved Notation "'nlet' x := A 'in' b"
- (at level 200, b at level 200, format "'nlet' x := A 'in' '//' b").
+ (at level 200, b at level 200, x at level 99, format "'nlet' x := A 'in' '//' b").
Reserved Notation "'nlet' x : tx := A 'in' b"
- (at level 200, b at level 200, format "'nlet' x : tx := A 'in' '//' b").
+ (at level 200, b at level 200, x at level 99, format "'nlet' x : tx := A 'in' '//' b").
Reserved Notation "'slet' x .. y := A 'in' b"
(at level 200, x binder, y binder, b at level 200, format "'slet' x .. y := A 'in' '//' b").
Reserved Notation "'llet' x := A 'in' b"