aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/output/Coercions.v
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2004-06-02 15:07:08 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2004-06-02 15:07:08 +0000
commit7dd6505ed58d6c70dbc778badf42f7df7d8191c6 (patch)
tree5a0bb5bbbd499aa88907000234b07a6edf194e3c /test-suite/output/Coercions.v
parentfc1029dc524df57d95b5fe886bb69dc5058fe517 (diff)
Ajout tests affichage coercions vers Funclass
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@5788 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'test-suite/output/Coercions.v')
-rw-r--r--test-suite/output/Coercions.v6
1 files changed, 6 insertions, 0 deletions
diff --git a/test-suite/output/Coercions.v b/test-suite/output/Coercions.v
index 61b69038f..2ad8b924e 100644
--- a/test-suite/output/Coercions.v
+++ b/test-suite/output/Coercions.v
@@ -7,3 +7,9 @@ Section testSection.
Variables S: Set; P: (pred S); R: (rel S); x:S.
Check (P x).
Check (R x x).
+End testSection.
+
+(* Check the removal of coercions with target Funclass *)
+
+Record foo : Type := { D :> nat -> nat }.
+Check [x:foo;n:nat](x n).