diff options
| author | Hugo Herbelin | 2015-11-07 10:47:34 +0100 |
|---|---|---|
| committer | Hugo Herbelin | 2015-11-07 10:47:34 +0100 |
| commit | 2f6daa7f4d0f4fae5a3fffdabf675d5b249ee377 (patch) | |
| tree | cc05840b59dfb748ad3f761224f29a940f592a7c /test-suite/bugs | |
| parent | 55a765faa95d7be9a1e4c37096139f57f288f55a (diff) | |
| parent | c5d380548ef5597b77c7ab1fce252704deefeaf1 (diff) | |
Merge remote-tracking branch 'origin/v8.5' into upstream-trunk
- Had to add a Sigma.to_evar_map
- Had to rework coqdep_common.ml{,i} and coqdep.ml
Diffstat (limited to 'test-suite/bugs')
| -rw-r--r-- | test-suite/bugs/closed/4273.v | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/4273.v b/test-suite/bugs/closed/4273.v new file mode 100644 index 0000000000..591ea4b5b2 --- /dev/null +++ b/test-suite/bugs/closed/4273.v @@ -0,0 +1,9 @@ + + +Set Primitive Projections. +Record total2 (P : nat -> Prop) := tpair { pr1 : nat; pr2 : P pr1 }. +Theorem onefiber' (q : total2 (fun y => y = 0)) : True. +Proof. assert (foo:=pr2 _ q). simpl in foo. + destruct foo. (* Error: q is used in conclusion. *) exact I. Qed. + +Print onefiber'.
\ No newline at end of file |
