diff options
| author | Pierre-Marie Pédrot | 2021-01-19 13:40:39 +0100 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2021-01-19 13:40:39 +0100 |
| commit | a85d8cb68f53667d13ae0b5210b5e3dcc3fd8aa4 (patch) | |
| tree | 58d9d3277014b8aee6f36f606ee529930f9c262b /test-suite/bugs | |
| parent | 326df6dc176f70b3192f463164c3a435ab187bed (diff) | |
| parent | 3878333deb3294cc54b1d9ce4599f71613ae9e3d (diff) | |
Merge PR #13512: Fixes #13413: freshness failure in apply-in introduction pattern
Reviewed-by: ppedrot
Diffstat (limited to 'test-suite/bugs')
| -rw-r--r-- | test-suite/bugs/closed/bug_13413.v | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_13413.v b/test-suite/bugs/closed/bug_13413.v new file mode 100644 index 0000000000..b4414a6a1d --- /dev/null +++ b/test-suite/bugs/closed/bug_13413.v @@ -0,0 +1,20 @@ +Goal forall (A B : Prop) (H : A -> B), A -> A -> B. +intros A B H ?%H H0. +exact H1. +Qed. + +Goal forall (A B : Prop) (H : A -> B), A -> A -> B. +intros A B H ?H%H H0. +exact H1. +Qed. + +Goal forall (A B : Prop) (H : A -> B), A -> A -> B. +intros A B H J%H H0. +exact J. +Qed. + +Set Mangle Names. +Goal forall (A B : Prop) (H : A -> B), A -> A -> B. +intros A B H ?%H _0. +assumption. +Qed. |
