aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorJason Gross2018-08-31 17:01:43 -0400
committerJason Gross2018-08-31 20:05:55 -0400
commit17cb475550a0f4efe9f3f4c58fdbd9039f5fdd68 (patch)
tree7a9ef8ae3a878dd1e29a176d45c552da006379fb /test-suite
parent31d58c9ee979699e733a561ec4eef6b0829fe73a (diff)
Give a proper error message on num-not in functor
Numeral Notations are not well-supported inside functors. We now give a proper error message rather than an anomaly when this occurs.
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/success/NumeralNotations.v10
1 files changed, 4 insertions, 6 deletions
diff --git a/test-suite/success/NumeralNotations.v b/test-suite/success/NumeralNotations.v
index 4a275de5b5..47ef381270 100644
--- a/test-suite/success/NumeralNotations.v
+++ b/test-suite/success/NumeralNotations.v
@@ -1,4 +1,3 @@
-
(* Test that we fail, rather than raising anomalies, on opaque terms during interpretation *)
(* https://github.com/coq/coq/pull/8064#discussion_r202497516 *)
@@ -290,15 +289,14 @@ Module Test16.
Inductive Foo := foo (_ : a.T).
Definition to_uint (x : Foo) : Decimal.uint := Nat.to_uint O.
Definition of_uint (x : Decimal.uint) : Foo := foo a.t.
- Numeral Notation Foo of_uint to_uint : test16_scope.
- Check let v := 0%test16 in v : Foo. (* Prints wrong: let v := foo a.t in v : Foo *)
+ Global Numeral Notation Foo of_uint to_uint : test16_scope.
+ Check let v := 0%test16 in v : Foo.
End F.
Module a <: A.
Definition T : Set := unit.
Definition t : T := tt.
End a.
Module Import f := F a.
- (* Check let v := 0%test16 in v : Foo. *)
- (* Error: Anomaly "Uncaught exception Failure("List.last")."
-Please report at http://coq.inria.fr/bugs/. *)
+ (** Ideally this should work, but it should definitely not anomaly *)
+ Fail Check let v := 0%test16 in v : Foo.
End Test16.