diff options
Diffstat (limited to 'test-suite/output/simpl.v')
-rw-r--r-- | test-suite/output/simpl.v | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test-suite/output/simpl.v b/test-suite/output/simpl.v new file mode 100644 index 00000000..5f1926f1 --- /dev/null +++ b/test-suite/output/simpl.v @@ -0,0 +1,13 @@ +(* Simpl with patterns *) + +Goal forall x, 0+x = 1+x. +intro x. +simpl (_ + x). +Show. +Undo. +simpl (_ + x) at 2. +Show. +Undo. +simpl (0 + _). +Show. +Undo. |