aboutsummaryrefslogtreecommitdiff
path: root/test-suite/output
diff options
context:
space:
mode:
authorcoqbot-app[bot]2020-11-27 12:43:59 +0000
committerGitHub2020-11-27 12:43:59 +0000
commit79d088f5b99855e7f109391a67fe79d0e654da36 (patch)
tree874897d8623ed2f413befd45c96fbf940a1581b0 /test-suite/output
parent4ca9cb8dc318bbc42ba791b483334bb12dacdfaf (diff)
parent36664ba0ac77968037687634af0cd5a808335cfc (diff)
Merge PR #13473: Testing {in _, _} and {pred _} from ssrbool
Reviewed-by: gares
Diffstat (limited to 'test-suite/output')
-rw-r--r--test-suite/output/ssr_pred.out3
-rw-r--r--test-suite/output/ssr_pred.v3
2 files changed, 6 insertions, 0 deletions
diff --git a/test-suite/output/ssr_pred.out b/test-suite/output/ssr_pred.out
new file mode 100644
index 0000000000..f00111ff97
--- /dev/null
+++ b/test-suite/output/ssr_pred.out
@@ -0,0 +1,3 @@
+in1W
+ : forall (T1 : predArgType) (D1 : {pred T1}) (P1 : T1 -> Prop),
+ (forall x : T1, P1 x) -> {in D1, forall x : T1, P1 x}
diff --git a/test-suite/output/ssr_pred.v b/test-suite/output/ssr_pred.v
new file mode 100644
index 0000000000..bd88af80a3
--- /dev/null
+++ b/test-suite/output/ssr_pred.v
@@ -0,0 +1,3 @@
+Require Import ssreflect ssrfun ssrbool.
+
+Check @in1W.