diff options
| author | herbelin | 2010-10-31 21:19:29 +0000 |
|---|---|---|
| committer | herbelin | 2010-10-31 21:19:29 +0000 |
| commit | 841bc4617470a30d4025fc279c5a3e72edbb6e13 (patch) | |
| tree | 07d18ac3c7a4ae7908b3545590248c841232b348 /test-suite | |
| parent | 30f6fd59780f57201e93ef4986422b6c89077ab4 (diff) | |
An experimental support for open constrs in hints and in "using"
option of "auto". Works for not too complicated hints (e.g. "@pair _ _ 0").
Would be simpler if make_apply_entry supported lemmas containing evars.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@13598 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/success/auto.v | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test-suite/success/auto.v b/test-suite/success/auto.v index a2701f8bbe..9b691e253c 100644 --- a/test-suite/success/auto.v +++ b/test-suite/success/auto.v @@ -16,3 +16,11 @@ Goal G unit Q -> F (Q tt). intro. auto. Qed. + +(* Test implicit arguments in "using" clause *) + +Goal forall n:nat, nat * nat. +auto using (pair O). +Undo. +eauto using (pair O). +Qed. |
