diff options
| author | herbelin | 2003-09-22 13:59:35 +0000 |
|---|---|---|
| committer | herbelin | 2003-09-22 13:59:35 +0000 |
| commit | 7401c9e20534498277affec403e638cb112cea26 (patch) | |
| tree | 5c383f8c980f6c174d749bec8f62c9830554dd46 | |
| parent | 980f8a26d5cb92de58a0b88e313701fe80f214bb (diff) | |
Implicits maintenant au courant pour l'affichage
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@4441 85f007b7-540e-0410-9357-904b9bb8a0f7
| -rw-r--r-- | theories/Lists/PolyList.v | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/theories/Lists/PolyList.v b/theories/Lists/PolyList.v index c007686caf..de5afb0813 100644 --- a/theories/Lists/PolyList.v +++ b/theories/Lists/PolyList.v @@ -16,12 +16,9 @@ Section Lists. Variable A : Set. Set Implicit Arguments. -Set Contextual Implicits. Inductive list : Set := nil : list | cons : A -> list -> list. -Unset Contextual Implicits. - Infix "::" cons (at level 7, right associativity) : list_scope V8only (at level 45, right associativity). @@ -555,6 +552,7 @@ End Reverse_Induction. End Lists. +Implicits nil [1]. V7only [Implicits nil [].]. Hints Resolve nil_cons app_nil_end ass_app app_ass : datatypes v62. |
