aboutsummaryrefslogtreecommitdiff
path: root/test-suite/vi
diff options
context:
space:
mode:
authorEnrico Tassi2014-12-10 11:40:23 +0100
committerEnrico Tassi2014-12-10 11:40:29 +0100
commitb6296c62d391b789dd80e90209a3498f733ae10a (patch)
tree15fc83e7e1c9efcb57efdefb59f8d438885a1761 /test-suite/vi
parent745c4e69f5709cc56382b650bbb36b21d3ae0ede (diff)
test-suite: few tests for ".v -> .vi -> .vo" compilation chain
Diffstat (limited to 'test-suite/vi')
-rw-r--r--test-suite/vi/simple.v2
-rw-r--r--test-suite/vi/univ_constraints_statements.v2
2 files changed, 4 insertions, 0 deletions
diff --git a/test-suite/vi/simple.v b/test-suite/vi/simple.v
new file mode 100644
index 0000000000..407074c1e7
--- /dev/null
+++ b/test-suite/vi/simple.v
@@ -0,0 +1,2 @@
+Lemma simple : True.
+Proof using. trivial. Qed.
diff --git a/test-suite/vi/univ_constraints_statements.v b/test-suite/vi/univ_constraints_statements.v
new file mode 100644
index 0000000000..bb6b95957d
--- /dev/null
+++ b/test-suite/vi/univ_constraints_statements.v
@@ -0,0 +1,2 @@
+Lemma ssr_congr_arrow Plemma Pgoal : Plemma = Pgoal -> Plemma -> Pgoal.
+Proof using. intro H; rewrite H; trivial. Qed.