diff options
| author | Lasse Blaauwbroek | 2021-03-30 22:21:26 +0200 |
|---|---|---|
| committer | Lasse Blaauwbroek | 2021-03-31 14:20:08 +0200 |
| commit | f77d6a239ff70a8aaa10d256f545fc21b2c7ecc0 (patch) | |
| tree | f6804613c0c14fbac5275a99917f5fcba057a0d8 /test-suite/output | |
| parent | a40631f9fbcd0ef8c1a716010be48e3f650e8955 (diff) | |
Fix printing of ssr do intros and seq tactics
Diffstat (limited to 'test-suite/output')
| -rw-r--r-- | test-suite/output/bug_13240.out | 3 | ||||
| -rw-r--r-- | test-suite/output/bug_13240.v | 10 |
2 files changed, 13 insertions, 0 deletions
diff --git a/test-suite/output/bug_13240.out b/test-suite/output/bug_13240.out new file mode 100644 index 0000000000..5fccef5cfe --- /dev/null +++ b/test-suite/output/bug_13240.out @@ -0,0 +1,3 @@ +Ltac t1 a b := a ; last b +Ltac t2 := do !idtac +Ltac t3 := idtac => True diff --git a/test-suite/output/bug_13240.v b/test-suite/output/bug_13240.v new file mode 100644 index 0000000000..a999450cd2 --- /dev/null +++ b/test-suite/output/bug_13240.v @@ -0,0 +1,10 @@ +Require Import ssreflect. + +Ltac t1 a b := a; last b. +Print t1. + +Ltac t2 := do !idtac. +Print t2. + +Ltac t3 := idtac => True. +Print t3. |
