File: bug_5161.v

package info (click to toggle)
rocq-stdlib 9.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 11,828 kB
  • sloc: python: 2,928; sh: 444; makefile: 319; javascript: 24; ml: 2
file content (27 lines) | stat: -rw-r--r-- 949 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
(* Check that the presence of binders with type annotation do not
   prevent the recursive binder part to be found *)

From Stdlib Require Import Utf8.

Delimit Scope C_scope with C.
Global Open Scope C_scope.

Delimit Scope uPred_scope with I.

Definition FORALL {T : Type} (f : T → Prop) : Prop := ∀ x, f x.

Notation "∀ x .. y , P" :=
  (FORALL (λ x, .. (FORALL (λ y, P)) ..)%I)
  (at level 10, x binder, y binder, P at level 200) : uPred_scope.
Infix "∧" := and : uPred_scope.

(* The next command fails with
   In recursive notation with binders, Φ is expected to come without type.
   I would expect this notation to work fine, since the ∀ does support
   type annotation.
*)
Notation "'{{{' P } } } e {{{ x .. y ; pat , Q } } }" :=
  (∀ Φ : _ → _,
      (∀ x, .. (∀ y, Q ∧ Φ pat) .. ))%I
    (at level 20, x closed binder, y closed binder,
     format "{{{  P  } } }  e  {{{ x .. y ;  pat ,  Q } } }") : uPred_scope.