diff options
author | Maxime Dénès <mail@maximedenes.fr> | 2015-02-26 21:57:51 +0100 |
---|---|---|
committer | Maxime Dénès <mail@maximedenes.fr> | 2015-02-26 21:57:51 +0100 |
commit | f65aac12bb8b2071dcc15f5351194c649d3f7196 (patch) | |
tree | a46423a31c7e1bb8b0d36d9c1e7cff1104775f0d /test-suite/bugs/closed/2602.v | |
parent | bc7d29e4c0f53d5c8e654157c4137c7e82910a7a (diff) |
Test for #2602, which seems now fixed.
Diffstat (limited to 'test-suite/bugs/closed/2602.v')
-rw-r--r-- | test-suite/bugs/closed/2602.v | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/2602.v b/test-suite/bugs/closed/2602.v new file mode 100644 index 000000000..f07447886 --- /dev/null +++ b/test-suite/bugs/closed/2602.v @@ -0,0 +1,8 @@ +Goal exists m, S m > 0. +eexists. +match goal with + | |- context [ S ?a ] => + match goal with + | |- S a > 0 => idtac + end +end.
\ No newline at end of file |