From f77d6a239ff70a8aaa10d256f545fc21b2c7ecc0 Mon Sep 17 00:00:00 2001 From: Lasse Blaauwbroek Date: Tue, 30 Mar 2021 22:21:26 +0200 Subject: Fix printing of ssr do intros and seq tactics --- test-suite/output/bug_13240.out | 3 +++ test-suite/output/bug_13240.v | 10 ++++++++++ 2 files changed, 13 insertions(+) create mode 100644 test-suite/output/bug_13240.out create mode 100644 test-suite/output/bug_13240.v (limited to 'test-suite') 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. -- cgit v1.2.3