aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/bugs/opened
diff options
context:
space:
mode:
authorGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2016-07-18 00:53:38 +0200
committerGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2016-07-18 00:57:24 +0200
commita07af57f3140a2481e1e2f45a930a17d80a33645 (patch)
tree5ea91c9bede1cbf1aa1991b7c3875fb20bedf8e5 /test-suite/bugs/opened
parentddf50c8bb15ce86fc3e3fbedf9f86fd278f01776 (diff)
Fix bug #4923: Warning: appcontext is deprecated.
Diffstat (limited to 'test-suite/bugs/opened')
-rw-r--r--test-suite/bugs/opened/3383.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-suite/bugs/opened/3383.v b/test-suite/bugs/opened/3383.v
index 9a14641a5..c04b6b7b4 100644
--- a/test-suite/bugs/opened/3383.v
+++ b/test-suite/bugs/opened/3383.v
@@ -1,7 +1,7 @@
Goal forall b : bool, match b as b' return if b' then True else True with true => I | false => I end = match b as b' return if b' then True else True with true => I | false => I end.
intro.
Fail lazymatch goal with
-| [ |- appcontext[match ?b as b' return @?P b' with true => ?t | false => ?f end] ]
+| [ |- context[match ?b as b' return @?P b' with true => ?t | false => ?f end] ]
=> change (match b as b' return P b with true => t | false => f end) with (@bool_rect P t f)
end. (* Toplevel input, characters 153-154:
Error: The reference P was not found in the current environment. *)