Skip to content
Snippets Groups Projects
Commit d8231d65 authored by Robbert Krebbers's avatar Robbert Krebbers
Browse files

No longer use `Declare Scope` since it does not work in Coq 8.9.

parent 72a8f885
No related branches found
No related tags found
No related merge requests found
Pipeline #20935 failed
...@@ -6,6 +6,8 @@ ...@@ -6,6 +6,8 @@
-arg -w -arg -convert_concl_no_check -arg -w -arg -convert_concl_no_check
# non-canonical projections (https://github.com/coq/coq/pull/10076) do not exist yet in 8.9. # non-canonical projections (https://github.com/coq/coq/pull/10076) do not exist yet in 8.9.
-arg -w -arg -redundant-canonical-projection -arg -w -arg -redundant-canonical-projection
# "Declare Scope" does not exist yet in 8.9.
-arg -w -arg -undeclared-scope
# We have ambiguous paths and so far it is not even clear what they are (https://gitlab.mpi-sws.org/iris/iris/issues/240). # We have ambiguous paths and so far it is not even clear what they are (https://gitlab.mpi-sws.org/iris/iris/issues/240).
-arg -w -arg -ambiguous-paths -arg -w -arg -ambiguous-paths
......
...@@ -18,7 +18,6 @@ Record lrel Σ := LRel { ...@@ -18,7 +18,6 @@ Record lrel Σ := LRel {
}. }.
Arguments LRel {_} _%I {_}. Arguments LRel {_} _%I {_}.
Arguments lrel_car {_} _ _ _ : simpl never. Arguments lrel_car {_} _ _ _ : simpl never.
Declare Scope lrel_scope.
Bind Scope lrel_scope with lrel. Bind Scope lrel_scope with lrel.
Delimit Scope lrel_scope with lrel. Delimit Scope lrel_scope with lrel.
Existing Instance lrel_persistent. Existing Instance lrel_persistent.
......
...@@ -51,7 +51,6 @@ Fixpoint binop_bool_res_type (op : bin_op) : option type := ...@@ -51,7 +51,6 @@ Fixpoint binop_bool_res_type (op : bin_op) : option type :=
| _ => None | _ => None
end. end.
Declare Scope FType_scope.
Delimit Scope FType_scope with ty. Delimit Scope FType_scope with ty.
Bind Scope FType_scope with type. Bind Scope FType_scope with type.
Infix "*" := TProd : FType_scope. Infix "*" := TProd : FType_scope.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment