aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorherbelin2011-05-26 15:37:02 +0000
committerherbelin2011-05-26 15:37:02 +0000
commit8b9ef591524c32ce773fd22874adaa190227f3c8 (patch)
tree433f16041414a0a3e9d6bad2f1f5fcbc4d247472
parentd6e6c0fa15a6b1e08b8b8707ec75b6a53b1e1b3d (diff)
Mini-test for eta
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@14160 85f007b7-540e-0410-9357-904b9bb8a0f7
-rw-r--r--test-suite/success/eta.v19
1 files changed, 19 insertions, 0 deletions
diff --git a/test-suite/success/eta.v b/test-suite/success/eta.v
new file mode 100644
index 0000000000..08078012a9
--- /dev/null
+++ b/test-suite/success/eta.v
@@ -0,0 +1,19 @@
+(* Kernel test (head term is a constant) *)
+Check (fun a : S = S => a : S = fun x => S x).
+
+(* Kernel test (head term is a variable) *)
+Check (fun (f:nat->nat) (a : f = f) => a : f = fun x => f x).
+
+(* Test type inference (head term is syntactically rigid) *)
+Check (fun (a : list = list) => a : list = fun A => _ A).
+
+(* Test type inference (head term is a variable) *)
+(* This one is still to be done...
+Check (fun (f:nat->nat) (a : f = f) => a : f = fun x => _ x).
+*)
+
+(* Test tactic unification *)
+Goal (forall f:nat->nat, (fun x => f x) = (fun x => f x)) -> S = S.
+intro H; apply H.
+Qed.
+