summaryrefslogtreecommitdiff
path: root/test-suite/output/inference.v
diff options
context:
space:
mode:
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 00000000..968ea71a
--- /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.