aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/success/auto.v8
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.