aboutsummaryrefslogtreecommitdiff
path: root/src/Reflection
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2016-12-26 12:11:50 -0500
committerGravatar Jason Gross <jgross@mit.edu>2016-12-26 12:11:50 -0500
commita3c02c642d9146bfe281a7f7727a5fa761305e0f (patch)
tree8f6fdae5f795201923f518dccb49ea5b9af547e1 /src/Reflection
parentc4bcb69fdc788ee5bf19d0f6f5391153c28f1aa0 (diff)
Fix Coq 8.6 warnings
Diffstat (limited to 'src/Reflection')
-rw-r--r--src/Reflection/MultiSizeTest.v17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/Reflection/MultiSizeTest.v b/src/Reflection/MultiSizeTest.v
index 9810930d7..eab8a8302 100644
--- a/src/Reflection/MultiSizeTest.v
+++ b/src/Reflection/MultiSizeTest.v
@@ -1,6 +1,7 @@
-Require Import Omega.
+Require Import Coq.omega.Omega.
Set Implicit Arguments.
+Set Asymmetric Patterns.
(** * Preliminaries: bounded and unbounded number types *)
@@ -25,7 +26,7 @@ Section unbounded.
| LetIn : unbounded -> (var -> unbounded) -> unbounded.
End unbounded.
-Implicit Arguments Const [var].
+Arguments Const [var] _.
Definition Unbounded := forall var, unbounded var.
@@ -64,12 +65,12 @@ Section bounded.
| Bound : forall t, bounded Nat -> bounded t.
End bounded.
-Implicit Arguments BConst [var].
-Implicit Arguments BConst8 [var].
-Implicit Arguments BConst9 [var].
-Implicit Arguments BVar [var t].
-Implicit Arguments Unbound [var t].
-Implicit Arguments Bound [var].
+Arguments BConst [var] _.
+Arguments BConst8 [var] _.
+Arguments BConst9 [var] _.
+Arguments BVar [var t] _.
+Arguments Unbound [var t] _.
+Arguments Bound [var] _ _.
Definition Bounded t := forall var, bounded var t.