diff options
| author | Vincent Laporte | 2019-05-03 09:57:06 +0000 |
|---|---|---|
| committer | Vincent Laporte | 2019-05-07 14:18:24 +0000 |
| commit | 1ec731fbef3ac13b7a8783461b8fa6609f962054 (patch) | |
| tree | 654686434c6ffa03f8882a54ed43bdf118d89145 | |
| parent | 94f3caa81cf2f681b66da9f3f69a9d8b881303e1 (diff) | |
[Test-suite] Add output case for issue #9370
| -rw-r--r-- | test-suite/output/bug_9370.out | 12 | ||||
| -rw-r--r-- | test-suite/output/bug_9370.v | 12 |
2 files changed, 24 insertions, 0 deletions
diff --git a/test-suite/output/bug_9370.out b/test-suite/output/bug_9370.out new file mode 100644 index 0000000000..0ff151c8b4 --- /dev/null +++ b/test-suite/output/bug_9370.out @@ -0,0 +1,12 @@ +1 subgoal + + ============================ + 1 = 1 +1 subgoal + + ============================ + 1 = 1 +1 subgoal + + ============================ + 1 = 1 diff --git a/test-suite/output/bug_9370.v b/test-suite/output/bug_9370.v new file mode 100644 index 0000000000..a7f4b7c23e --- /dev/null +++ b/test-suite/output/bug_9370.v @@ -0,0 +1,12 @@ +Require Import Reals. +Open Scope R_scope. +Goal 1/1=1. +Proof. + field_simplify (1/1). +Show. + field_simplify. +Show. + field_simplify. +Show. + reflexivity. +Qed. |
