aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorthery2020-02-26 17:03:31 +0100
committerthery2020-02-26 17:03:31 +0100
commit4b9250db36d568dc6a112711431089f2b638c2a8 (patch)
tree120a5365c05f8cd03ac87b74324588a6b8542b8c /test-suite
parentfe1335eb350c305142bf4be57c681891515a5dac (diff)
parentd817f3b203dd7bc7ea756c829384f10ccc4e5f64 (diff)
Merge PR #11686: Consolidate int63-related notations
Reviewed-by: thery
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/bugs/closed/bug_10031.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-suite/bugs/closed/bug_10031.v b/test-suite/bugs/closed/bug_10031.v
index 15b53de00d..b76ea7d337 100644
--- a/test-suite/bugs/closed/bug_10031.v
+++ b/test-suite/bugs/closed/bug_10031.v
@@ -3,7 +3,7 @@ Require Import Int63 ZArith.
Open Scope int63_scope.
Goal False.
-cut (let (q, r) := (0, 0) in ([|q|], [|r|]) = (9223372036854775808%Z, 0%Z));
+cut (let (q, r) := (0, 0) in (φ q, φ r) = (9223372036854775808%Z, 0%Z));
[discriminate| ].
Fail (change (0, 0) with (diveucl_21 1 0 1); apply diveucl_21_spec).
Abort.