diff options
| author | Pierre-Marie Pédrot | 2017-08-01 14:43:30 +0200 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2017-08-01 15:48:23 +0200 |
| commit | 8a8fd265158fa3fe7eea65b50c3da722e81fa688 (patch) | |
| tree | 2d121778619f7dcaaeda7316dcc9fa311cac350a /tests | |
| parent | 7cd31681eb5e3ccc7e7e920bb7eebe92827f6b16 (diff) | |
Binding more primitive tactics.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/stuff/ltac2.v | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/stuff/ltac2.v b/tests/stuff/ltac2.v index ece6fca06a..6b30d42c09 100644 --- a/tests/stuff/ltac2.v +++ b/tests/stuff/ltac2.v @@ -143,3 +143,11 @@ Ltac2 rec do n tac := match Int.equal n 0 with end. Print Ltac2 do. + +Goal forall x, 1 + x = x + 1. +Proof. +refine (fun () => '(fun x => _)). +Std.cbv { + Std.rBeta := true; Std.rMatch := true; Std.rFix := true; Std.rCofix := true; + Std.rZeta := true; Std.rDelta := false; rConst := []; +} { Std.on_hyps := None; Std.on_concl := Std.AllOccurrences }. |
