aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorHugo Herbelin2015-11-10 17:26:36 +0100
committerHugo Herbelin2015-11-10 17:27:07 +0100
commitd57e30cfe8f68987ed216415079f4dab42065408 (patch)
treec95b7b789fa20ca464b69ceccddd6047ba1e4505 /test-suite
parent07620386b3c1b535ee7e43306a6345f015a318f0 (diff)
Revert "Fixing #1225: we now skip the canonically built binding contexts of"
This reverts commit 07620386b3c1b535ee7e43306a6345f015a318f0. Very sorry not ready.
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/bugs/closed/1225.v12
1 files changed, 0 insertions, 12 deletions
diff --git a/test-suite/bugs/closed/1225.v b/test-suite/bugs/closed/1225.v
deleted file mode 100644
index a7799b35fe..0000000000
--- a/test-suite/bugs/closed/1225.v
+++ /dev/null
@@ -1,12 +0,0 @@
-(* Taking automatically into account internal dependencies of a |match] *)
-
-Let a n := @exist nat _ _ (refl_equal (n + 1)).
-Goal let (n, _) := a 3 in n = 4.
-pattern 3 at 1.
-Abort.
-
-Goal match refl_equal 0 in _ = n return n = 0 with
- | refl_equal => refl_equal 0
- end = refl_equal 0.
-pattern 0 at 1 2 3 4 5 6.
-Abort.