diff options
| author | coqbot-app[bot] | 2020-10-19 08:14:29 +0000 |
|---|---|---|
| committer | GitHub | 2020-10-19 08:14:29 +0000 |
| commit | e6a00dd734018f6dea95dcf9c19b62f04df245e5 (patch) | |
| tree | f8e5d28c24859287e86b42abb0aa3a17ee5c25db /test-suite | |
| parent | e583be62b74d71b5af159700e3a31f78fec9a7d2 (diff) | |
| parent | 276ad0f2f2db5e4ddc569da606a6db8873fdec00 (diff) | |
Merge PR #13192: Fix algebraic on the right when using bidi hints
Reviewed-by: gares
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/bugs/closed/bug_12970.v | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_12970.v b/test-suite/bugs/closed/bug_12970.v new file mode 100644 index 0000000000..69ce7ec2c2 --- /dev/null +++ b/test-suite/bugs/closed/bug_12970.v @@ -0,0 +1,4 @@ +Arguments existT _ & _ _. + +Definition f := fun X (A : X -> Type) (P : forall x, A x -> Type) x y => + existT (fun f => forall x, P x (f x)) x y : sigT (fun f => forall x, P x (f x)). |
