aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorCyril Cohen2019-02-11 22:40:37 +0100
committerCyril Cohen2019-02-11 22:40:37 +0100
commit218db2670903159c9a1e28da7b5caf3d08c59689 (patch)
tree94e88ce1e143b5872e4d83f9910106d650e38749 /test-suite
parent0a18d769c88372eca162cf7a2f2eec61165c1f77 (diff)
parent3aaf1d2d07bcbc11f97ab42838418d01c389aeec (diff)
Merge PR #9540: [ssr] keep user annotation on views (fix #9538)
Reviewed-by: CohenCyril Fixes a bug introduced by PR #9341
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/ssr/autoclean.v4
1 files changed, 4 insertions, 0 deletions
diff --git a/test-suite/ssr/autoclean.v b/test-suite/ssr/autoclean.v
new file mode 100644
index 0000000000..db80a62259
--- /dev/null
+++ b/test-suite/ssr/autoclean.v
@@ -0,0 +1,4 @@
+Require Import ssreflect.
+
+Lemma view_disappears A B (AB : A -> B) : A -> False.
+Proof. move=> {}/(AB). have := AB. Abort.