aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/output/inference.v
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2011-12-04 20:48:28 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2011-12-04 20:48:28 +0000
commite47cdbd232517adf6e6bf411b9f9715c43773fd5 (patch)
treed7cbc4804ca56713fdcbd40e1821e4eb21f27089 /test-suite/output/inference.v
parent7d3ca4346465f31bd58ead06b9856637c0f5fc4d (diff)
A small test for type inference (used to be a regression at some time).
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@14759 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'test-suite/output/inference.v')
-rw-r--r--test-suite/output/inference.v14
1 files changed, 14 insertions, 0 deletions
diff --git a/test-suite/output/inference.v b/test-suite/output/inference.v
new file mode 100644
index 000000000..968ea71a9
--- /dev/null
+++ b/test-suite/output/inference.v
@@ -0,0 +1,14 @@
+(* Check that types are not uselessly unfolded *)
+
+(* Check here that P returns something of type "option L" and not
+ "option (list nat)" *)
+
+Definition L := list nat.
+
+Definition P (e:option L) :=
+ match e with
+ | None => None
+ | Some cl => Some cl
+ end.
+
+Print P.